Favorites/create

跳转到: 导航, 搜索
(使用示例: 添加代码)
(Java示例)
第146行: 第146行:
 
  }
 
  }
 
  }
 
  }
 +
====PHP示例====
 +
<pre>
 +
//favorites/create
 +
//添加收藏
 +
$c = new WeiboClient( WB_AKEY , WB_SKEY , $_SESSION['last_key']['oauth_token'] , $_SESSION['last_key']['oauth_token_secret']  );
 +
//收藏id
 +
$sid='sid';
 +
$msg = $c->add_to_favorites( $sid );
 +
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;
 +
}
 +
if ($msg['text']){
 +
echo($msg['text']);
 +
}
 +
</pre>

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

目录

favorites/create

收藏一条微博信息

URL

curl http://api.t.sina.com.cn/favorites/create.format

格式

xml, json

HTTP请求方式

POST

是否需要身份验证

true

请求数限制

true

请求参数

  • id 必填参数, 要收藏的微博id


使用说明

  • 如果没有登录或超过发布上限,将返回403错误
  • 收藏ID不存在,将返回400错误
  • 收藏成功返回收藏的微博信息

返回结果

XML示例:

<?xml version="1.0" encoding="UTF-8"?>
 <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>true</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></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>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>

JSON示例:

  {"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":true,
   "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 user:password -d "id=12345" http://api.t.sina.com.cn/favorites/create.xml

  • json:

curl -u user:password -d "id=12345" http://api.t.sina.com.cn/favorites/create.json

Java示例

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

package weibo4j.examples;

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

public class CreateFavorite {

	/**
	 * 添加收藏 
	 * @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 {
		Status status = getWeibo(true,args).createFavorite(Long.parseLong(args[2]));//args[2]:收藏id
		System.out.println(status.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示例

//favorites/create
//添加收藏 
$c = new WeiboClient( WB_AKEY , WB_SKEY , $_SESSION['last_key']['oauth_token'] , $_SESSION['last_key']['oauth_token_secret']  );
//收藏id
$sid='sid';
$msg = $c->add_to_favorites( $sid );
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;
}
if ($msg['text']){
	echo($msg['text']);
}