Statuses/destroy

跳转到: 导航, 搜索
(Java示例)
(Java示例)
第148行: 第148行:
 
  }
 
  }
 
  }
 
  }
 +
====PHP示例====
 +
<pre>
 +
//Statuses/destroy
 +
$c = new WeiboClient( WB_AKEY , WB_SKEY , $_SESSION['last_key']['oauth_token'] , $_SESSION['last_key']['oauth_token_secret']  );
 +
//先发表一篇微博
 +
$msg = $c->update("测试发表微博");
 +
if ($msg === false || $msg === null){
 +
echo "Error occured";
 +
return false;
 +
}
 +
if (isset($msg['error_code']) && isset($msg['error'])){
 +
echo ('Error_code: '.$msg['error_code'].';  Error: '.$msg['error'] );
 +
return false;
 +
}
 +
echo($msg['id']." : ".$msg['text']." ".$msg["created_at"]);
 +
//删除刚发表的微博
 +
$c->destroy($msg['id']);
 +
if ($msg === false || $msg === null){
 +
echo "Error occured";
 +
return false;
 +
}
 +
if (isset($msg['error_code']) && isset($msg['error'])){
 +
echo ('Error_code: '.$msg['error_code'].';  Error: '.$msg['error'] );
 +
return false;
 +
}
 +
//user id
 +
$uid = "User ID";
 +
$msg = $c->user_timeline($uid);
 +
if ($msg === false || $msg === null){
 +
echo "Error occured";
 +
return false;
 +
}
 +
if (isset($msg['error_code']) && isset($msg['error'])){
 +
echo ('Error_code: '.$msg['error_code'].';  Error: '.$msg['error'] );
 +
return false;
 +
}
 +
//遍历当前微博信息
 +
foreach($msg as $data){
 +
echo($data['id']." : ".$data['text']." ".$data["created_at"]);
 +
}
 +
</pre>

2010年8月4日 (三) 13:44的版本

目录

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

Java示例

请从 微博SDK开发包下载 下载Java SDK
代码示意如下:

package weibo4j.examples;

import java.util.List;
import weibo4j.Status;
import weibo4j.Weibo;

public class DeleteStatus {

	/**
	 * 删除一条微博信息
	 * @param args
	 */
	public static void main(String[] args) {
		System.setProperty("weibo4j.oauth.consumerKey", Weibo.CONSUMER_KEY);
    	System.setProperty("weibo4j.oauth.consumerSecret", Weibo.CONSUMER_SECRET);
       try {
        	Weibo weibo = getWeibo(true,args);
       	//先发表一篇微博
       	Status status = weibo.updateStatus("测试测试");
       	System.out.println(status.getId() + " : "+ status.getText()+"  "+status.getCreatedAt());
       	//删除刚发表的微博
       	status = weibo.destroyStatus(status.getId());
       	List<Status> list = weibo.getUserTimeline(args[2]);//args[2]:用户id
       	for(Status st : list) {//遍历当前微博信息
       		System.out.println(st.getId() + " : "+ st.getText()+"  "+st.getCreatedAt());
       	}
		} catch (Exception e) {
			e.printStackTrace();
		}
	}

	private static Weibo getWeibo(boolean isOauth,String ... args) {
		Weibo weibo = new Weibo();
		if(isOauth) {//oauth验证方式 args[0]:访问的token;args[1]:访问的密匙
 			weibo.setToken(args[0], args[1]);
		}else {//用户登录方式
   		weibo.setUserId(args[0]);//用户名/ID
   		weibo.setPassword(args[1]);//密码
		}
		return weibo;
	}
}

PHP示例

//Statuses/destroy
$c = new WeiboClient( WB_AKEY , WB_SKEY , $_SESSION['last_key']['oauth_token'] , $_SESSION['last_key']['oauth_token_secret']  );
//先发表一篇微博
$msg = $c->update("测试发表微博");
if ($msg === false || $msg === null){
	echo "Error occured";
	return false;
}
if (isset($msg['error_code']) && isset($msg['error'])){
	echo ('Error_code: '.$msg['error_code'].';  Error: '.$msg['error'] );
	return false;
} 
echo($msg['id']." : ".$msg['text']." ".$msg["created_at"]);
//删除刚发表的微博
$c->destroy($msg['id']);
if ($msg === false || $msg === null){
	echo "Error occured";
	return false;
}
if (isset($msg['error_code']) && isset($msg['error'])){
	echo ('Error_code: '.$msg['error_code'].';  Error: '.$msg['error'] );
	return false;
}
//user id
$uid = "User ID";
$msg = $c->user_timeline($uid);
if ($msg === false || $msg === null){
	echo "Error occured";
	return false;
}
if (isset($msg['error_code']) && isset($msg['error'])){
	echo ('Error_code: '.$msg['error_code'].';  Error: '.$msg['error'] );
	return false;
} 
//遍历当前微博信息
foreach($msg as $data){
	echo($data['id']." : ".$data['text']." ".$data["created_at"]);
}