Account/update profile

跳转到: 导航, 搜索

目录

account/update_profile

自定义微博页面的参数。只会修改参数更新项。

URL:

http://api.t.sina.com.cn/account/update_profile.format

格式:

xml, json

HTTP请求方式:

POST

是否需要登录:

true

请求参数:

必须有一下参数中的一个或多个,参数值为字符串. 进一步的限制,请参阅下面的各个参数描述.

  • name. 昵称,可选参数.不超过20个汉字
  • gender 性别,可选参数. m,男,f,女。
  • province 可选参数. 参考省份城市编码表
  • city 可选参数. 参考省份城市编码表,1000为不限
  • description. 可选参数. 不超过160个汉字.

使用说明

  • 参数超过发布上限,将返回400错误

返回结果

XML示例:

 <?xml version="1.0" encoding="UTF-8"?>
 <user>
    <id>11075</id>
    <screen_name>11075</screen_name>
    <name>11075</name>
    <province>广东</province>
    <city>广州</city>
    <location>广东 广州</location>
    <description></description>
    <url></url>
    <profile_image_url>http://portrait.sinaimg.cn/11075/50#.jpg</profile_image_url>
    <domain></domain>
    <gender></gender>
    <followers_count>0</followers_count>
    <friends_count>0</friends_count>
    <statuses_count>0</statuses_count>
    <favourites_count>0</favourites_count>
    <created_at>Thu Jan 01 08:00:00 +0800 1970</created_at>
    <following>false</following>
    <verified>false</verified>
    <geo_enabled>false</geo_enabled>
    <status>
      <created_at>Fri Dec 25 17:57:27 +0800 2009</created_at>
      <id>19093</id>
      <text>测试</text>
      <source>
        <a id="0" href="http://t.sina.com.cn">Web</a>
      </source>
      <favorited>false</favorited>
      <truncated>false</truncated>
      <geo/>
      <in_reply_to_status_id></in_reply_to_status_id>
      <in_reply_to_user_id></in_reply_to_user_id>
      <in_reply_to_screen_name></in_reply_to_screen_name>
    </status>
 </user>

JSON示例:

  {
    "id":11075,
    "screen_name":"name_11075",
    "name":"name_11075",
    "province":"0",
    "city":"0",
    "location":"",
    "description":"",
    "url":"",
    "profile_image_url":"http://tp4.sinaimg.cn/11075/50/0",
    "domain":"11075",
    "followers_count":28,
    "friends_count":50,
    "statuses_count":29,
    "favourites_count":0,
    "created_at":"Thu Jan 01 08:00:00 +0800 1970",
    "following":false,
    "geo_enabled":false,
    "verified":true,
    "status":
          {"created_at":"Thu Jan 07 17:36:07 +0800 2010",
           "id":142309,
           "text":"测试",
          "source":"<a id=\"0\" href=\"http://t.sina.com.cn/\" rel=\"nofollow\">Web</a>",
           "favorited":false,
           "truncated":false,
           "in_reply_to_status_id":"",
           "in_reply_to_user_id":"",
           "in_reply_to_screen_name":"",
           "geo":null}
   }

使用示例:

  • xml:

curl -u user:password -d "url=http://www.igudo.com" http://api.t.sina.com.cn/account/update_profile.xml

  • json:

curl -u user:password -d "url=http://www.igudo.com" http://api.t.sina.com.cn/account/update_profile.json

Java示例

请从 微博SDK开发包下载 下载Java SDK
代码示例如下:

package weibo4j.examples;

import weibo4j.User;
import weibo4j.Weibo;

public class OAuthUpdateProfile {

	/**
	 * Usage: java -DWeibo4j.oauth.consumerKey=[consumer key]
	 * -DWeibo4j.oauth.consumerSecret=[consumer secret]
	 * Weibo4j.examples.OAuthUpdateProfile [accessToken] [accessSecret]
	 * [imageFilePath]
	 * 
	 * @param args
	 *            message
	 */
	public static void main(String[] args) {
		try {
			if (args.length < 3) {
	            System.out.println(
	                "Usage: java weibo4j.examples.OAuthUpdateProfile token tokenSecret filePath");
	            System.exit( -1);
	        }
			
			System.setProperty("weibo4j.oauth.consumerKey", Weibo.CONSUMER_KEY);
			System.setProperty("weibo4j.oauth.consumerSecret", Weibo.CONSUMER_SECRET);

			Weibo weibo = new Weibo();
			
			/*
			 * 此处需要填写AccessToken的key和Secret,可以从OAuthUpdate的执行结果中拷贝过来
			 */
			weibo.setToken(args[0], args[1]);
			try {
				//args[2]:昵称;args[3]:email;args[4]:头像地址;args[5]:地区;args[6]:描述
				User user = weibo.updateProfile(args[2],args[3],args[4],args[5],args[6]);
				System.out.println(user.toString());
				
			} catch (Exception e1) {
				e1.printStackTrace();
			}
		} catch (Exception ioe) {
			System.out.println("Failed to read the system input.");
		}
	}
}