Direct messages/destroy

跳转到: 导航, 搜索
(Java示例)
(PHP示例)
第185行: 第185行:
 
  }
 
  }
 
====PHP示例====
 
====PHP示例====
 +
请从 [[SDK | 微博SDK开发包下载]] 处下载PHP SDK(支持OAuth验证之版本)<br>
 +
代码示例如下:
 
<pre>
 
<pre>
 
//Direct messages/destroy
 
//Direct messages/destroy
 
//删除一条私信
 
//删除一条私信
$c = new WeiboClient( WB_AKEY , WB_SKEY , $_SESSION['last_key']['oauth_token'] , $_SESSION['last_key']['oauth_token_secret']  );
+
$c = new WeiboClient( WB_AKEY ,  
 +
                      WB_SKEY ,  
 +
                      $_SESSION['last_key']['oauth_token'] ,  
 +
                      $_SESSION['last_key']['oauth_token_secret']  );
 
//要删除的私信主键ID
 
//要删除的私信主键ID
 
$did = "Direct_Message_ID";
 
$did = "Direct_Message_ID";

2010年8月4日 (三) 15:24的版本

目录

删除私信

按ID删除私信。操作用户必须为私信的接收人。

URL

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

格式

xml, json

HTTP请求方式

POST, DELETE

是否需要身份验证

true

请求数限制

false

请求参数

  • id. 必填参数,要删除的私信主键ID.

o 示例: http://api.t.sina.com.cn/direct_messages/destroy/12345.json

使用说明

  • 参数错误,或者id不存在返回400错误

返回结果

XML示例:

 <?xml version="1.0" encoding="UTF-8"?>
 <direct_message>
   <created_at>Fri Jan 08 15:15:31 +0800 2010</created_at>
   <id>207675</id>
   <text>send dm 777</text>
   <sender_id>10506</sender_id>
   <recipient_id>11075</recipient_id>
   <sender_screen_name>name_10506</sender_screen_name>
   <recipient_screen_name>name_11075</recipient_screen_name>
   <sender>
     <id>10506</id>
     <screen_name>name_10506</screen_name>
     <name>name_10506</name>
     <province>0</province>
     <city>0</city>
     <location></location>
     <description></description>
     <url></url>
     <profile_image_url>http://tp3.sinaimg.cn/10506/50/0</profile_image_url>
     <domain>10506</domain>
     <gender></gender>
     <followers_count>24</followers_count>
     <friends_count>50</friends_count>
     <statuses_count>47</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>
   </sender>
   <recipient>
     <id>11075</id>
     <screen_name>name_11075</screen_name>
     <name>name_11075</name>
     <province>0</province>
     <city>0</city>
     <location></location>
     <description></description>
     <url></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>29</statuses_count>
     <favourites_count>0</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>
   </recipient>
 </direct_message>

JSON示例:

 {
   "created_at":"Wed Jan 06 11:48:24 +0800 2010",
   "id":207568,
   "text":"test",
   "sender_id":10506,
   "recipient_id":11075,
   "sender_screen_name":"name_10506",
   "recipient_screen_name":"name_11075",
   "sender":
          {"id":10506,
           "screen_name":"name_10506",
           "name":"name_10506",
           "province":null,
           "city":null,
           "location":"",
           "description":"",
           "url":"",
           "profile_image_url":"http://tp3.sinaimg.cn/10506/50/0",
           "domain":"10506",
           "followers_count":24,
           "friends_count":50,
           "statuses_count":0,
           "favourites_count":25,
           "created_at":"Thu Jan 01 08:00:00 +0800 1970",
           "following":false,
           "geo_enabled":false,
           "verified":false},
   "recipient":
          {"id":11075,
           "screen_name":"name_11075",
           "name":"name_11075",
           "province":null,
           "city":null,
           "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":11,
           "created_at":"Thu Jan 01 08:00:00 +0800 1970",
           "following":false,
           "geo_enabled":false,
           "verified":true}
  }

使用示例

  • xml

curl -u user:password --http-request DELETE http://api.t.sina.com.cn/direct_messages/destroy/88619848.xml

  • json

curl -u user:password --http-request DELETE http://api.t.sina.com.cn/direct_messages/destroy/88619848.json

Java示例

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

package weibo4j.examples;

import java.util.List;

import weibo4j.DirectMessage;
import weibo4j.Weibo;
import weibo4j.WeiboException;

/**
* @author hezhou
*
*/
public class DestroyDirectMessage {
	/**
	 * 删除一条私信
	 * @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);
			weibo.destroyDirectMessage(Integer.parseInt(args[2]));
			List<DirectMessage> list = weibo.getDirectMessages();
			for(DirectMessage msg : list) {
				System.out.println(msg.toString());
			}
		} catch (WeiboException 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示例

请从 微博SDK开发包下载 处下载PHP SDK(支持OAuth验证之版本)
代码示例如下:

//Direct messages/destroy
//删除一条私信
$c = new WeiboClient( WB_AKEY , 
                      WB_SKEY , 
                      $_SESSION['last_key']['oauth_token'] , 
                      $_SESSION['last_key']['oauth_token_secret']  );
//要删除的私信主键ID
$did = "Direct_Message_ID";
$msg = $c->delete_dm( $did );
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('Deleted Message Info '.$msg['id'].' : '.$msg['text']);