Account/get notice

跳转到: 导航, 搜索
(XML)
(JSON)
第24行: 第24行:
 
====json====
 
====json====
 
{"follower":0,"status_type":0,"from_user":0,"dm":0,"mention":0,"comment":0}
 
{"follower":0,"status_type":0,"from_user":0,"dm":0,"mention":0,"comment":0}
 
====JSON====
 
<pre>
 
{
 
  "id":1642466141,
 
  "screen_name":"huchao",
 
  "name":"huchao",
 
  "province":"11",
 
  "city":"8",
 
  "location":"北京 海淀区",
 
  "description":"Blogger,苹果迷,Google粉。",
 
  "url":"http://tuoniao.org",
 
  "profile_image_url":"http://tp2.sinaimg.cn/1642466141/50/1281523744",
 
  "domain":"westy",
 
  "gender":"m",
 
  "followers_count":65,
 
  "friends_count":59,
 
  "statuses_count":139,
 
  "favourites_count":1,
 
  "created_at":"Fri Aug 28 00:00:00 +0800 2009",
 
  "following":false,
 
  "allow_all_act_msg":false,
 
  "geo_enabled":false,
 
  "verified":false,
 
  "status":{
 
      "created_at":"Tue Sep 14 15:16:49 +0800 2010",
 
      "id":2617110512,
 
      "text":"请叫我杂务小队长[奥特曼] 哔哔哔哔~~~~~~(呼唤动感超人的表情)",
 
      "source":"<a href=\"http://t.sina.com.cn\" rel=\"nofollow\">新浪微博</a>",
 
      "favorited":false,
 
      "truncated":false,
 
      "in_reply_to_status_id":"",
 
      "in_reply_to_user_id":"",
 
      "in_reply_to_screen_name":"",
 
      "geo":null
 
  },
 
  "email_hash":"204a87cee01c719fdc4c3593d82b4416"
 
}
 
</pre>
 
  
 
===使用示例: ===
 
===使用示例: ===

2010年10月26日 (二) 11:33的版本

目录

account/get_notice

获取用户提醒设置 。

URL

http://api.t.sina.com.cn/account/verify_credentials.format

格式

xml, json

HTTP请求方式

GET

是否需要登录

True

请求数限制

False

关于请求数限制,参见接口访问权限说明

请求参数

返回结果:

XML

<?xml version="1.0" encoding="UTF-8"?> <result> <follower>0</follower> <status_type>0</status_type> <from_user>0</from_user> <dm>0</dm> <mention>0</mention> <comment>0</comment> </result>

json

{"follower":0,"status_type":0,"from_user":0,"dm":0,"mention":0,"comment":0}

使用示例:

  • xml:

curl -u uid:password http://api.t.sina.com.cn/account/verify_credentials.xml?source=appkey

  • json:

curl -u uid:password http://api.t.sina.com.cn/account/verify_credentials.json?source=appkey

Java示例

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

package weibo4j.examples;

import weibo4j.User;
import weibo4j.Weibo;
import weibo4j.WeiboException;

public class VerifyCredentials {

	public static void main(String[] args) {
	System.setProperty("weibo4j.oauth.consumerKey", Weibo.CONSUMER_KEY);
	System.setProperty("weibo4j.oauth.consumerSecret", Weibo.CONSUMER_SECRET);
		try {
			User user = getWeibo(true,args).verifyCredentials();
			System.out.println(user.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验证之版本)
代码示例如下:

//account/verify_credentials
$c = new WeiboClient( WB_AKEY , 
                      WB_SKEY , 
                      $_SESSION['last_key']['oauth_token'] , 
                      $_SESSION['last_key']['oauth_token_secret']  );

$msg = $c->verify_credentials();
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 (isset($msg['name'])){
	echo($msg['name']);
}