Account/end session

跳转到: 导航, 搜索

目录

account/end_session

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

URL

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

格式

xml, json

HTTP请求方式

POST

是否需要登录

true

请求数限制

false

返回结果

XML示例:

  <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>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>
   <status>
     <created_at>Thu Jan 07 17:36:07 +0800 2010</created_at>
     <id>142309</id>
     <text>测试</text>
     <source>
       <a id="0" href="http://t.sina.com.cn">Web</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>
   </status>
 </user>


JSON示例:

 {
   "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":29,
   "favourites_count":0,
   "created_at":"Thu Jan 01 08:00:00 +0800 1970",
   "following":false,
   "geo_enabled":false,
   "verified":true,
   "status":
         {"created_at":"Thu Jan 07 17:36:07 +0800 2010",
          "id":142309,
          "text":"测试",
         "source":"<a id=\"0\" href=\"http://t.sina.com.cn/\" rel=\"nofollow\">Web</a>",
          "favorited":false,
          "truncated":false,
          "in_reply_to_status_id":"",
          "in_reply_to_user_id":"",
          "in_reply_to_screen_name":"",
          "geo":null}
  }

使用示例

  • xml:

curl -u user:password -d "" http://api.t.sina.com.cn/account/end_session.xml

  • json:

curl -u user:password -d "" http://api.t.sina.com.cn/account/end_session.json

PHP示例

//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']);
}