Statuses/update

跳转到: 导航, 搜索
 
(未显示2个用户的8个中间版本)
第1行: 第1行:
 
{{api_desc2|
 
{{api_desc2|
 
uri=statuses/update|
 
uri=statuses/update|
desc=发布一条微博信息。请求必须用POST方式提交。 |
+
desc=发布一条微博信息。也可以同时转发某条微博。请求必须用POST方式提交。 |
 
format=XML/JSON|
 
format=XML/JSON|
 
httpMethod=POST|
 
httpMethod=POST|
第7行: 第7行:
 
rateLimit=true|
 
rateLimit=true|
 
params={{api_args|status|true|string|要发布的微博消息文本内容}}
 
params={{api_args|status|true|string|要发布的微博消息文本内容}}
{{api_args|in_reply_to_status_id|false|int64|要回复的微博消息ID。如果传入的ID是一条转发的微博,则直接回复最初被转发的微博。}}
+
{{api_args|in_reply_to_status_id|false|int64|要转发的微博消息ID。}}
 
{{api_args|lat|false|float|纬度。有效范围:-90.0到+90.0,+表示北纬。}}
 
{{api_args|lat|false|float|纬度。有效范围:-90.0到+90.0,+表示北纬。}}
 
{{api_args|long|false|float|经度。有效范围:-180.0到+180.0,+表示东经。}}
 
{{api_args|long|false|float|经度。有效范围:-180.0到+180.0,+表示东经。}}
{{api_args_colspan|1=<font style="color:red">注意:lat和long参数需配合使用,用于标记发表微博消息时所在的地理位置,只有用户设置中geo_enabled=true时候地理位置信息才有效。</font>}}|
+
{{api_args_colspan|1=<font style="color:#ee6666">注意:lat和long参数需配合使用,用于标记发表微博消息时所在的地理位置,只有用户设置中geo_enabled=true时候地理位置信息才有效。</font>}}
 +
{{api_args|annotations|false|string|元数据,主要是为了方便第三方应用记录一些适合于自己使用的信息。<br/>每条微博可以包含一个或者多个元数据。请以<b>json字串</b>的形式提交,字串长度不超过512个字符,具体内容可以自定。}}|
 
getParam=|
 
getParam=|
postParam=-d "status=abc"|
+
postParam=-d 'status=abc&annotations=[{"type2":123}]'|
 
result=
 
result=
 
===XML示例===
 
===XML示例===
 
<pre>
 
<pre>
<?xml version="1.0" encoding="UTF-8"?>
+
  <?xml version="1.0" encoding="UTF-8"?>
<status>
+
  <status>
  <created_at>Thu Dec 02 11:53:33 +0800 2010</created_at>
+
    <created_at>Mon Dec 13 14:55:05 +0800 2010</created_at>
  <id>4016590347</id>
+
    <id>4288554507</id>
  <text>abc</text>
+
    <text>abcedf</text>
  <source>
+
    <source>
    <a href="http://open.t.sina.com.cn">微博开放平台接口</a>
+
      <a href="http://open.t.sina.com.cn">微博开放平台接口</a>
  </source>
+
    </source>
  <favorited>false</favorited>
+
    <favorited>false</favorited>
  <truncated>false</truncated>
+
    <truncated>false</truncated>
  <geo/>
+
    <geo/>
  <in_reply_to_status_id/>
+
    <in_reply_to_status_id></in_reply_to_status_id>
  <in_reply_to_user_id/>
+
    <in_reply_to_user_id></in_reply_to_user_id>
  <in_reply_to_screen_name/>
+
    <in_reply_to_screen_name></in_reply_to_screen_name>
  <user>
+
    <user>
    <id>1658122963</id>
+
      <id>1854740027</id>
    <screen_name>zhangwei217245</screen_name>
+
      <screen_name>siegetest</screen_name>
    <name>zhangwei217245</name>
+
      <name>siegetest</name>
    <province>11</province>
+
      <province>11</province>
    <city>5</city>
+
      <city>8</city>
    <location>北京 朝阳区</location>
+
      <location>北京 海淀区</location>
    <description>ABCDE</description>
+
      <description>ABCDE</description>
    <url/>
+
      <url></url>
    <profile_image_url>http://tp4.sinaimg.cn/1658122963/50/1282754213</profile_image_url>
+
      <profile_image_url>http://tp4.sinaimg.cn/1854740027/50/1291272213/1</profile_image_url>
    <domain>zhangwei217245</domain>
+
      <domain></domain>
    <gender>m</gender>
+
      <gender>m</gender>
    <followers_count>22</followers_count>
+
      <followers_count>2</followers_count>
    <friends_count>43</friends_count>
+
      <friends_count>20</friends_count>
    <statuses_count>104</statuses_count>
+
      <statuses_count>39</statuses_count>
    <favourites_count>3</favourites_count>
+
      <favourites_count>0</favourites_count>
    <created_at>Tue Nov 03 00:00:00 +0800 2009</created_at>
+
      <created_at>Thu Nov 11 00:00:00 +0800 2010</created_at>
    <following>false</following>
+
      <following>false</following>
    <verified>false</verified>
+
      <verified>false</verified>
    <allow_all_act_msg>false</allow_all_act_msg>
+
      <allow_all_act_msg>true</allow_all_act_msg>
    <geo_enabled>true</geo_enabled>
+
      <geo_enabled>true</geo_enabled>
  </user>
+
    </user>
</status>
+
    <annotations>
 +
      <annotation class="object">
 +
        <type2 type="number">123</type2>
 +
      </annotation>
 +
    </annotations>
 +
  </status>
 
</pre>
 
</pre>
 
===JSON示例===
 
===JSON示例===
 
<pre>
 
<pre>
 
{
 
{
     "created_at" : "Thu Dec 02 15:17:25 +0800 2010",
+
     "created_at" : "Mon Dec 13 14:56:03 +0800 2010",
     "text" : "为什么欠钱?为什么呀?",
+
     "text" : "abc",
 
     "truncated" : false,
 
     "truncated" : false,
     "retweeted_status" :
+
     "in_reply_to_status_id" : "",
    {
+
    "annotations" :  
        "created_at" : "Thu Dec 02 13:12:07 +0800 2010",
+
    [
        "text" : "唉,每天一睁眼就又欠银行100块钱! http://sinaurl.cn/hHjxb",
+
        "truncated" : false,
+
        "in_reply_to_status_id" : "",
+
        "annotations" :  
+
        [
+
 
+
        ],
+
        "in_reply_to_screen_name" : "",
+
        "geo" : null,
+
        "user" :
+
 
         {
 
         {
             "name" : "xiecharll",
+
             "type2" : 123
            "domain" : "xiecharll",
+
         }
            "geo_enabled" : true,
+
     ],
            "followers_count" : 24,
+
     "in_reply_to_screen_name" : "",
            "statuses_count" : 66,
+
            "favourites_count" : 3,
+
            "city" : "8",
+
            "description" : "蹲在马路中间的人",
+
            "verified" : false,
+
            "id" : 1646310564,
+
            "gender" : "m",
+
            "friends_count" : 24,
+
            "screen_name" : "xiecharll",
+
            "allow_all_act_msg" : false,
+
            "following" : false,
+
            "url" : "http://1",
+
            "profile_image_url" : "http://tp1.sinaimg.cn/1646310564/50/1252581612/1",
+
            "created_at" : "Thu Sep 10 00:00:00 +0800 2009",
+
            "province" : "11",
+
            "location" : "北京 海淀区"
+
         },
+
        "favorited" : false,
+
        "in_reply_to_user_id" : "",
+
        "id" : 4018420969,
+
        "source" : "<a href=\"http://t.sina.com.cn\" rel=\"nofollow\">新浪微博</a>"
+
     },
+
    "in_reply_to_status_id" : "4018420969",
+
     "in_reply_to_screen_name" : "xiecharll",
+
 
     "geo" : null,
 
     "geo" : null,
 
     "user" :  
 
     "user" :  
 
     {
 
     {
         "name" : "zhangwei217245",
+
         "name" : "siegetest2",
         "domain" : "zhangwei217245",
+
         "domain" : "",
 
         "geo_enabled" : true,
 
         "geo_enabled" : true,
         "followers_count" : 22,
+
         "followers_count" : 0,
         "statuses_count" : 107,
+
         "statuses_count" : 3,
         "favourites_count" : 3,
+
         "favourites_count" : 0,
         "city" : "5",
+
         "city" : "8",
         "description" : "ABCDE",
+
         "description" : "",
 
         "verified" : false,
 
         "verified" : false,
         "id" : 1658122963,
+
         "id" : 1854835127,
 
         "gender" : "m",
 
         "gender" : "m",
         "friends_count" : 43,
+
         "friends_count" : 20,
         "screen_name" : "zhangwei217245",
+
         "screen_name" : "siegetest2",
 
         "allow_all_act_msg" : false,
 
         "allow_all_act_msg" : false,
 
         "following" : false,
 
         "following" : false,
 
         "url" : "",
 
         "url" : "",
         "profile_image_url" : "http://tp4.sinaimg.cn/1658122963/50/1282754213",
+
         "profile_image_url" : "http://tp4.sinaimg.cn/1854835127/50/1291709848/1",
         "created_at" : "Tue Nov 03 00:00:00 +0800 2009",
+
         "created_at" : "Thu Nov 11 00:00:00 +0800 2010",
 
         "province" : "11",
 
         "province" : "11",
         "location" : "北京 朝阳区"
+
         "location" : "北京 海淀区"
 
     },
 
     },
 
     "favorited" : false,
 
     "favorited" : false,
     "in_reply_to_user_id" : "1646310564",
+
     "in_reply_to_user_id" : "",
     "id" : 4020927147,
+
     "id" : 4288574373,
 
     "source" : "<a href=\"http://open.t.sina.com.cn\" rel=\"nofollow\">微博开放平台接口</a>"
 
     "source" : "<a href=\"http://open.t.sina.com.cn\" rel=\"nofollow\">微博开放平台接口</a>"
 
}
 
}
 
</pre>|
 
</pre>|
 
useAge=
 
useAge=
为防止重复提交,当用户发布的微博消息与上次成功发布的微博消息内容一样时,将返回400错误,给出错误提示:“40025:Error: repeated weibo text!“。|
+
* 为防止重复提交,当用户发布的微博消息与上次成功发布的微博消息内容一样时,将返回400错误,给出错误提示:“40025:Error: repeated weibo text!“。
 +
* 转发微博消息时接口的表现可参考[[statuses/repost]]|
 
otherInfo=
 
otherInfo=
 
===Java示例===
 
===Java示例===

2012年9月24日 (一) 11:36的最后版本

目录

statuses/update

发布一条微博信息。也可以同时转发某条微博。请求必须用POST方式提交。

URL

http://api.t.sina.com.cn/statuses/update.(json%7Cxml)

支持格式

XML/JSON

HTTP请求方式

POST

是否需要登录

true
关于授权机制,参见授权机制声明

请求数限制

true
关于请求数限制,参见接口访问权限说明

请求参数

  必选 类型及范围 说明
source true string 申请应用时分配的AppKey,调用接口时候代表应用的唯一身份。(采用OAuth授权方式不需要此参数)
status true string 要发布的微博消息文本内容
in_reply_to_status_id false int64 要转发的微博消息ID。
lat false float 纬度。有效范围:-90.0到+90.0,+表示北纬。
long false float 经度。有效范围:-180.0到+180.0,+表示东经。
注意:lat和long参数需配合使用,用于标记发表微博消息时所在的地理位置,只有用户设置中geo_enabled=true时候地理位置信息才有效。
annotations false string 元数据,主要是为了方便第三方应用记录一些适合于自己使用的信息。
每条微博可以包含一个或者多个元数据。请以json字串的形式提交,字串长度不超过512个字符,具体内容可以自定。

注意事项

  • 为防止重复提交,当用户发布的微博消息与上次成功发布的微博消息内容一样时,将返回400错误,给出错误提示:“40025:Error: repeated weibo text!“。
  • 转发微博消息时接口的表现可参考statuses/repost

返回结果

XML示例

  <?xml version="1.0" encoding="UTF-8"?>
  <status>
    <created_at>Mon Dec 13 14:55:05 +0800 2010</created_at>
    <id>4288554507</id>
    <text>abcedf</text>
    <source>
      <a href="http://open.t.sina.com.cn">微博开放平台接口</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>
    <user>
      <id>1854740027</id>
      <screen_name>siegetest</screen_name>
      <name>siegetest</name>
      <province>11</province>
      <city>8</city>
      <location>北京 海淀区</location>
      <description>ABCDE</description>
      <url></url>
      <profile_image_url>http://tp4.sinaimg.cn/1854740027/50/1291272213/1</profile_image_url>
      <domain></domain>
      <gender>m</gender>
      <followers_count>2</followers_count>
      <friends_count>20</friends_count>
      <statuses_count>39</statuses_count>
      <favourites_count>0</favourites_count>
      <created_at>Thu Nov 11 00:00:00 +0800 2010</created_at>
      <following>false</following>
      <verified>false</verified>
      <allow_all_act_msg>true</allow_all_act_msg>
      <geo_enabled>true</geo_enabled>
    </user>
    <annotations>
      <annotation class="object">
        <type2 type="number">123</type2>
      </annotation>
    </annotations>
  </status>

JSON示例

{
    "created_at" : "Mon Dec 13 14:56:03 +0800 2010",
    "text" : "abc",
    "truncated" : false,
    "in_reply_to_status_id" : "",
    "annotations" : 
    [
        {
            "type2" : 123
        }
    ],
    "in_reply_to_screen_name" : "",
    "geo" : null,
    "user" : 
    {
        "name" : "siegetest2",
        "domain" : "",
        "geo_enabled" : true,
        "followers_count" : 0,
        "statuses_count" : 3,
        "favourites_count" : 0,
        "city" : "8",
        "description" : "",
        "verified" : false,
        "id" : 1854835127,
        "gender" : "m",
        "friends_count" : 20,
        "screen_name" : "siegetest2",
        "allow_all_act_msg" : false,
        "following" : false,
        "url" : "",
        "profile_image_url" : "http://tp4.sinaimg.cn/1854835127/50/1291709848/1",
        "created_at" : "Thu Nov 11 00:00:00 +0800 2010",
        "province" : "11",
        "location" : "北京 海淀区"
    },
    "favorited" : false,
    "in_reply_to_user_id" : "",
    "id" : 4288574373,
    "source" : "<a href=\"http://open.t.sina.com.cn\" rel=\"nofollow\">微博开放平台接口</a>"
}

其他

Java示例

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

package weibo4j.examples;

import weibo4j.Status;
import weibo4j.Weibo; 

public class UpdateStatus { 

	/**
	 * 发布一条微博信息 
	 * @param args
	 */
	public static void main(String[] args) {
		System.setProperty("weibo4j.oauth.consumerKey", Weibo.CONSUMER_KEY);
    	System.setProperty("weibo4j.oauth.consumerSecret", Weibo.CONSUMER_SECRET);
       try {
       	Weibo weibo = getWeibo(true,args);
       	Status status = weibo.updateStatus("测试发表微博");
       	System.out.println(status.getId() + " : "+ status.getText()+"  "+status.getCreatedAt());
       	
		} catch (Exception e) {
			e.printStackTrace();
		}
	}

	private static Weibo getWeibo(boolean isOauth,String ... args) {
		Weibo weibo = new Weibo();
		if(isOauth) {//oauth验证方式 args[0]:访问的token;args[1]:访问的密匙
			weibo.setToken(args[0], args[1]);
		}else {//用户登录方式
    		weibo.setUserId(args[0]);//用户名/ID
   		weibo.setPassword(args[1]);//密码
		}
		return weibo;
	}
}

PHP示例

请从 微博SDK开发包下载 处下载PHP SDK(支持OAuth验证之版本)
代码示例如下:

//Statuses/update
$c = new WeiboClient( WB_AKEY , 
                      WB_SKEY , 
                      $_SESSION['last_key']['oauth_token'] , 
                      $_SESSION['last_key']['oauth_token_secret']  );

$msg = $c->update("测试发表微博");
if ($msg === false || $msg === null){
	echo "Error occured";
	return false;
}
if (isset($msg['error_code']) && isset($msg['error'])){
	echo ('Error_code: '.$msg['error_code'].';  Error: '.$msg['error'] );
	return false;
} 
echo($msg['id']." : ".$msg['text']." ".$msg["created_at"]);
文档更新时间: 2012-09-24