Statuses/repost

跳转到: 导航, 搜索
第27行: 第27行:
 
* 如果没有登录或越权发布,将返回403错误
 
* 如果没有登录或越权发布,将返回403错误
 
* 微博将忽略重复的发布。每次发布将比较登录用户的最新一条发布消息,如果一样将被忽略。因此,用户不能连续提交相同信息。 发布成功返回发布的信息ID,否则返回为空。
 
* 微博将忽略重复的发布。每次发布将比较登录用户的最新一条发布消息,如果一样将被忽略。因此,用户不能连续提交相同信息。 发布成功返回发布的信息ID,否则返回为空。
 +
* 不能转发自己发布的微博,相关调用将会被系统忽略。
  
 
=== 返回===
 
=== 返回===

2009年12月24日 (四) 11:30的版本

目录

statuses/repost

转发一条微博信息。请求必须用POST方式提交。为防止重复,发布的信息与最新信息一样话,将会被忽略。

URL

http://api.t.sina.com.cn/statuses/repost.format or http://api.t.sina.com.cn/statuses/retweet/id.format

格式

xml, json

HTTP请求方式

POST

是否需要登录

true

请求数限制

false

请求参数

  • id 必填参数, 转发的微博ID
  • status. 可选参数, 添加的转发信息。必须做URLEncode,信息内容不超过140个汉字。如不填则自动生成类似“转发 @author: 原内容”文字。
  • iscomment 可选参数, 是否作为一条评论发布,默认为不作为评论发布

说明

  • 如果没有登录或越权发布,将返回403错误
  • 微博将忽略重复的发布。每次发布将比较登录用户的最新一条发布消息,如果一样将被忽略。因此,用户不能连续提交相同信息。 发布成功返回发布的信息ID,否则返回为空。
  • 不能转发自己发布的微博,相关调用将会被系统忽略。

返回

XML示例:

<?xml version="1.0" encoding="UTF-8"?>
<status>
   <created_at>Tue Dec 01 08:51:58 +0800 2009</created_at>
   <id>99999999</id>
   <text>转发:@1141457724 </text>
   <source>
     <a href="http://t.sina.com.cn">Web</a>
   </source>
   <favorited>false</favorited>
   <truncated>false</truncated>
   <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>1141457724</id>
     <screen_name>1141457724</screen_name>
     <name>1141457724</name>
     <location>广州</location>
     <description>blog: timyang.net</description>
     <profile_image_url>50#.jpg</profile_image_url>
     <followers_count>0</followers_count>
     <friends_count>0</friends_count>
     <statuses_count>0</statuses_count>
     <favourites_count>0</favourites_count>
     <following>false</following>
   </user>
   <retweeted_status>
     <created_at>Tue Dec 01 08:51:58 +0800 2009</created_at>
     <id>100000000</id>
     <text>虽然渴者只要少许的水便够了,我却很快活地给与了我全部的水。</text>
     <source>
       <a href="http://t.sina.com.cn">Web</a>
     </source>
     <favorited>false</favorited>
     <truncated>false</truncated>
     <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>
     <thumbnail_pic>http://static16.photo.sina.com.cn/thumbnail/62988d06tcbbc377f7bbf</thumbnail_pic>
     <bmiddle_pic>http://static16.photo.sina.com.cn/bmiddle/62988d06tcbbc377f7bbf</bmiddle_pic>
     <original_pic>http://static16.photo.sina.com.cn/orignal/62988d06tcbbc377f7bbf</original_pic>
     <user>
       <id>1337040644</id>
       <screen_name>1337040644</screen_name>
       <name>1337040644</name>
       <location>广州</location>
       <description>blog: timyang.net</description>
       <profile_image_url>50#.jpg</profile_image_url>
       <followers_count>0</followers_count>
       <friends_count>0</friends_count>
       <statuses_count>0</statuses_count>
       <favourites_count>0</favourites_count>
       <following>false</following>
     </user>
   </retweeted_status>
 </status>

使用示例

curl -u user:password -d "id=1&status=playing with cURL and repost" http://api.t.sina.com.cn/statuses/repost.xml