Account/end session

跳转到: 导航, 搜索
第16行: 第16行:
 
===请求数限制===
 
===请求数限制===
 
false
 
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>
 +
    <profile_image_url>http://tp4.sinaimg.cn/11075/50/0</profile_image_url>
 +
    <domain>11075</domain>
 +
    <gender></gender>
 +
    <email></email>
 +
    <qq>4102</qq>
 +
    <msn>msn_4102</msn>
 +
    <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":"",
 +
    "profile_image_url":"http://tp4.sinaimg.cn/11075/50/0",
 +
    "domain":"11075",
 +
    "email":"",
 +
    "qq":"4102",
 +
    "msn":"msn_4102",
 +
    "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,
 +
          "apiState":3}
 +
  }
 +
 +
  
 
===使用示例===
 
===使用示例===
 +
 +
* xml:
 
curl -u user:password -d "" http://api.t.sina.com.cn/account/end_session.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

2010年1月8日 (五) 17:16的版本

目录

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>
   <profile_image_url>http://tp4.sinaimg.cn/11075/50/0</profile_image_url>
   <domain>11075</domain>
   <gender></gender>
   <email></email>
   <qq>4102</qq>
   <msn>msn_4102</msn>
   <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":"",
   "profile_image_url":"http://tp4.sinaimg.cn/11075/50/0",
   "domain":"11075",
   "email":"",
   "qq":"4102",
   "msn":"msn_4102",
   "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,
          "apiState":3}
  }


使用示例

  • 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