Statuses/comment

跳转到: 导航, 搜索

目录

statuses/comment

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

URL

curl http://api.t.sina.com.cn/statuses/comment.format

格式

xml, json, rss, atom

HTTP请求方式

POST

是否需要身份验证

true

请求数限制

false

请求参数

  • id 必填参数, 要评论的微博id
  • cid 选填参数, 要评论的评论id
  • comment. 必填参数, 评论内容。必须做URLEncode,信息内容不超过140个汉字。

使用说明

  • 如果没有登录或超过发布上限,将返回403错误
  • 系统将忽略重复发布的评论信息。每次发布将比较最后一条发布评论消息,如果一样将被忽略。因此用户不能连续提交相同信息。发布成功返回发布的信息

ID,否则返回为空。

返回

XML示例:

<?xml version="1.0" encoding="UTF-8"?>
<comment>
   <created_at>Tue Dec 15 13:12:16 +0800 2009</created_at>
   <id>4</id>
   <text>支持API</text>
   <user>
     <id>144531</id>
     <screen_name>144531</screen_name>
     <name>144531</name>
     <province>广东</province>
     <city>广州</city>
     <location>广东 广州</location>
     <description>blog: timyang.net</description>
     <profile_image_url>50#.jpg</profile_image_url>
     <gender></gender>
     <email></email>
     <qq></qq>
     <msn></msn>
     <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>
     <profile_background_image_url></profile_background_image_url>
     <url></url>
     <protected>false</protected>
     <profile_background_color>9ae4e8</profile_background_color>
     <profile_text_color>000000</profile_text_color>
     <profile_link_color>0000ff</profile_link_color>
     <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
     <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
     <utc_offset>28800</utc_offset>
     <time_zone>CST</time_zone>
     <profile_background_tile>false</profile_background_tile>
     <notifications>false</notifications>
     <geo_enabled>false</geo_enabled>
   </user>
   <status>
     <created_at>Tue Dec 15 13:47:16 +0800 2009</created_at>
     <id>3</id>
     <text>布莱恩特一个365度的大转身”(那个5度怎么看出来的?)</text>
     <source>
       <a 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>
     <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>19629</id>
       <screen_name>19629</screen_name>
       <name>19629</name>
       <province>广东</province>
       <city>广州</city>
       <location>广东 广州</location>
       <description>blog: timyang.net</description>
       <profile_image_url>50#.jpg</profile_image_url>
       <gender></gender>
       <email></email>
       <qq></qq>
       <msn></msn>
       <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>
       <profile_background_image_url></profile_background_image_url>
       <url></url>
       <protected>false</protected>
       <profile_background_color>9ae4e8</profile_background_color>
       <profile_text_color>000000</profile_text_color>
       <profile_link_color>0000ff</profile_link_color>
       <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
       <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
       <utc_offset>28800</utc_offset>
       <time_zone>CST</time_zone>
       <profile_background_tile>false</profile_background_tile>
       <notifications>false</notifications>
       <geo_enabled>false</geo_enabled>
     </user>
   </status>
 </comment>

使用示例

cURL:

curl -u user:password -d "id=12345&status=playing with cURL and the Sina API" http://api.t.sina.com.cn/statuses/comment.xml