Statuses/repost

跳转到: 导航, 搜索

目录

statuses/repost

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

URL

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

格式

xml, json, rss, atom

HTTP请求方式

POST

是否需要登录

true

请求数限制

false

请求参数

  • status. 必填参数, 添加的转发信息。必须做URLEncode,信息内容不超过140个汉字。
  • mid 必填参数, 转发的微博ID
  • iscomment 选填填参数, 是否作为一条评论发布,默认为不作为评论发布

说明

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

返回

XML示例:

<?xml version="1.0" encoding="UTF-8"?>
<status>
  <id>8374590856</id>
  <text>微博平台很重要的一点在于多渠道,使得用户可以随时随地随意收发信息,我们会在这个 方向努力的。</text>
  <source>
    <a href="http://t.sina.com.cn">Web</a>
  </source>
  <favorited>false</favorited>
  <truncated>false</truncated>
  <repost_id>1472669230</repost_id>
  <repost_user_id>11075</repost_user_id>
  <created_at>Tue Nov 17 20:11:24 +0800 2009</created_at>
  <repost_at>Tue Nov 18 20:11:24 +0800 2009</repost_at>
  <user>
    <id>10503</id>
    <screen_name>timyang</screen_name>
    <name>Tim Yang</name>
    <location>广州</location>
    <description>blog: timyang.net</description>
    <profile_image_url>http://tt8.sinaimg.cn/10503/50/1256306049</profile_image_url>
    <followers_count>0</followers_count>
    <friends_count>0</friends_count>
    <statuses_count>0</statuses_count>
    <favourites_count>0</favourites_count>
  </user>
</status>

使用示例

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