Account/end session

跳转到: 导航, 搜索

目录

account/end_session

清除已验证用户的session,退出登录,并将cookie设为null。主要用于widget等web应用场合。

URL

http://api.t.sina.com.cn/account/end_session.(json%7Cxml)

支持格式

XML/JSON

HTTP请求方式

GET

是否需要登录

true
关于授权机制,参见授权机制声明

请求数限制

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

请求参数

  必选 类型及范围 说明
source true string 申请应用时分配的AppKey,调用接口时候代表应用的唯一身份。(采用OAuth授权方式不需要此参数)

注意事项

返回结果

XML示例

<?xml version="1.0" encoding="UTF-8"?>
<user>
  <id>110020</id>
  <screen_name>Testuser</screen_name>
  <name>Testuser</name>
  <province>11</province>
  <city>8</city>
  <location>北京 海淀区</location>
  <description>openapi test user</description>
  <url>http://open.t.sina.com.cn</url>
  <profile_image_url>http://tp2.sinaimg.cn/1642466141/50/1281523744</profile_image_url>
  <domain>testuser</domain>
  <gender>m</gender>
  <followers_count>57</followers_count>
  <friends_count>59</friends_count>
  <statuses_count>131</statuses_count>
  <favourites_count>1</favourites_count>
  <created_at>Fri Aug 28 00:00:00 +0800 2009</created_at>
  <following>false</following>
  <verified>false</verified>
  <allow_all_act_msg>false</allow_all_act_msg>
  <geo_enabled>false</geo_enabled>
  <status>
    <created_at>Fri Sep 10 09:37:19 +0800 2010</created_at>
    <id>2465135565</id>
    <text>如果创新工厂的“点心”能够取代MTK成为山寨的主流系统,到时中国将遍地开满Android之花吧。</text>
    <source>
      <a href="http://t.sina.com.cn">新浪微博</a>
    </source>
    <favorited>false</favorited>
    <truncated>false</truncated>
    <geo/>
    <in_reply_to_status_id/>
    <in_reply_to_user_id/>
    <in_reply_to_screen_name/>
  </status>
</user>

JSON示例

{
   "id":1642466141,
   "screen_name":"Testuser",
   "name":"Testuser",
   "province":"11",
   "city":"8",
   "location":"北京 海淀区",
   "description":"openapi test user",
   "url":"http://open.t.sina.com.cn",
   "profile_image_url":"http://tp2.sinaimg.cn/1642466141/50/1281523744",
   "domain":"Testuser",
   "gender":"m",
   "followers_count":57,
   "friends_count":59,
   "statuses_count":131,
   "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":"Fri Sep 10 09:37:19 +0800 2010",
      "id":2465135565,
      "text":"如果创新工厂的“点心”能够取代MTK成为山寨的主流系统,到时中国将遍地开满Android之花吧。",
      "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
   }
}

其他

PHP示例

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

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

$msg = $c->oauth->post("http://api.t.sina.com.cn/account/end_session.json");
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']);
}