Statuses/destroy

跳转到: 导航, 搜索

目录

statuses/destroy

删除微博。注意:只能删除自己发布的信息。

URL

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

格式

xml, json

HTTP请求方式

POST, DELETE

是否需要身份验证

true

请求数限制

true

请求参数

  • id. 必须参数. 要删除的微博ID.

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

使用说明

  • 如果参数错误,将返回400错误

返回结果

XML示例:

<?xml version="1.0" encoding="UTF-8"?>
 <status>
   <created_at>Thu Jan 07 18:26:53 +0800 2010</created_at>
   <id>142311</id>
   <text>lsdjfl端口</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>
     <url>http://timyang.net</url>
     <profile_image_url>http://tp4.sinaimg.cn/11075/50/0</profile_image_url>
     <domain>11075</domain>
     <gender></gender>
     <followers_count>28</followers_count>
     <friends_count>50</friends_count>
     <statuses_count>0</statuses_count>
     <favourites_count>33</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>

JSON示例:

 {"created_at":"Thu Jan 07 18:27:35 +0800 2010",
   "id":142312,
   "text":"lsdjfl端口",
   "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":"",
         "url":"",
         "profile_image_url":"http://tp4.sinaimg.cn/11075/50/0",
         "domain":"11075",
         "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}
 }

使用示例

  • xml:

curl -u uid:password --http-request DELETE http://api.t.sina.com.cn/statuses/destroy/1472669360.xml?source=appkey

  • json:

curl -u uid:password --http-request DELETE http://api.t.sina.com.cn/statuses/destroy/1472669360.json?source=appkey