Statuses/comment destroy

跳转到: 导航, 搜索

目录

statuses/comment_destroy

删除评论。注意:只能删除自己发布的评论,发部微博的用户不可以删除其他人的评论。

URL

http://api.t.sina.com.cn/statuses/comment_destroy/id.format

格式

xml, json

HTTP请求方式

POST, DELETE

是否需要身份验证

true

请求数限制

false

请求参数

  • id. 必须参数. 要删除的评论ID.

o 示例: http://api.t.sina.com.cn/statuses/comment_destroy/12345.xml

使用说明

  • 如果评论不存在,将返回403错误
  • 如果参数错误,将返回500错误


返回结果

XML示例:

 <?xml version="1.0" encoding="UTF-8"?>
 <comment>
   <created_at>Fri Jan 08 11:39:02 +0800 2010</created_at>
   <id>203092</id>
   <text>aaaaaaaaaaaaaaaaaaaaaa</text>
   <source>
     <a id="10013" href="http://t.sina.com.cn">SinaDestTop</a>
   </source>
   <user>
     <id>11055</id>
     <screen_name>name_11055</screen_name>
     <name>name_11055</name>
     <province>0</province>
     <city>0</city>
     <location></location>
     <description></description>
     <profile_image_url>http://tp4.sinaimg.cn/11055/50/0</profile_image_url>
     <domain>11055</domain>
     <gender></gender>
     <email></email>
     <qq>525</qq>
     <msn>msn_525</msn>
     <followers_count>24</followers_count>
     <friends_count>51</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>
   </user>
   <status>
     <created_at>Fri Jan 08 10:18:05 +0800 2010</created_at>
     <id>142314</id>
     <text>lsdjfl55</text>
     <source>
       <a id="10013" href="http://t.sina.com.cn">SinaDestTop</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>11075</id>
       <screen_name>name_11075</screen_name>
       <name>name_11075</name>
       <province>0</province>
       <city>0</city>
       <location></location>
       <description></description>
       <profile_image_url>http://tp4.sinaimg.cn/11075/50/0</profile_image_url>
       <domain>11075</domain>
       <gender></gender>
       <email></email>
       <qq>4102</qq>
       <msn>msn_4102</msn>
       <followers_count>28</followers_count>
       <friends_count>50</friends_count>
       <statuses_count>0</statuses_count>
       <favourites_count>34</favourites_count>
       <created_at>Thu Jan 01 08:00:00 +0800 1970</created_at>
       <following>false</following>
       <verified>true</verified>
       <geo_enabled>false</geo_enabled>
     </user>
   </status>
 </comment>


JSON示例:

  {"created_at":"Fri Jan 08 11:39:30 +0800 2010",
   "id":203093,
   "text":"bbbbbbbbbbbb",
   "source":"<a id=\"10013\" href=\"http://t.sina.com.cn/\" rel=\"nofollow\">SinaDestTop</a>",
   "user":
        {"id":11055,
         "screen_name":"name_11055",
         "name":"name_11055",
         "province":"0",
         "city":"0",
         "location":"",
         "description":"",
         "profile_image_url":"http://tp4.sinaimg.cn/11055/50/0",
         "domain":"11055",
         "email":"",
         "qq":"525",
         "msn":"msn_525",
         "followers_count":24,
         "friends_count":51,
         "statuses_count":0,
         "favourites_count":0,
         "created_at":"Thu Jan 01 08:00:00 +0800 1970",
         "following":false,
         "geo_enabled":false,
         "verified":false},
   "status":
        {"created_at":"Fri Jan 08 10:18:05 +0800 2010",
         "id":142314,
         "text":"lsdjfl55",
         "source":"<a id=\"10013\" href=\"http://t.sina.com.cn/\" rel=\"nofollow\">SinaDestTop</a>",
         "favorited":false,
         "truncated":false,
         "in_reply_to_status_id":"",
         "in_reply_to_user_id":"",
         "in_reply_to_screen_name":"",
         "geo":null,
         "user":
               {"id":11075,
                "screen_name":"name_11075",
                "name":"name_11075",
                "province":"0",
                "city":"0",
                "location":"",
                "description":"",
                "profile_image_url":"http://tp4.sinaimg.cn/11075/50/0",
                "domain":"11075",
                "email":"",
                "qq":"4102",
                "msn":"msn_4102",
                "followers_count":28,
                "friends_count":50,
                "statuses_count":0,
                "favourites_count":34,
                "created_at":"Thu Jan 01 08:00:00 +0800 1970",
                "following":false,
                "geo_enabled":false,
                "verified":true},
         "apiState":3},
   "apiState":3}


使用示例

  • xml:

curl -u user:password --http-request DELETE http://api.t.sina.com.cn/statuses/comment_destroy/1472669360.xml

  • json:

curl -u user:password --http-request DELETE http://api.t.sina.com.cn/statuses/comment_destroy/1472669360.json