Statuses/upload

跳转到: 导航, 搜索
(返回)
(使用示例)
第89行: 第89行:
  
 
=== 使用示例===
 
=== 使用示例===
参看update
+
 
 +
* XML:
 +
 
 +
http://api.t.sina.com.cn/statuses/upload.xml
 +
 
 +
* JSON:
 +
 
 +
http://api.t.sina.com.cn/statuses/upload.json

2010年1月7日 (四) 11:04的版本

目录

statuses/upload

上传图片及发布微博信息。请求必须用POST方式提交。为防止重复,发布的信息与当前最新信息一样话,将会被忽略。

URL

curl http://api.t.sina.com.cn/sstatuses/upload.format

格式

xml, json, rss, atom

HTTP请求方式

POST, 必须用Multipart/form-data方式

是否需要身份验证

true

请求数限制

false

请求参数

  • status. 必填参数, 要更新的微博信息。必须做URLEncode,信息内容部超过140个汉字,为空返回400错误。
  • pic. 必填参数。必须JPEG格式,为空返回400错误。

使用说明

  • 如果没有登录或超过发布上限,将返回403错误
  • 系统将忽略重复发布的信息。每次发布将比较最后一条发布消息,如果一样将被忽略。因此用户不能连续提交相同信息。发布成功返回发布的信息ID,否则返回为空。

返回

XML示例:

<?xml version="1.0" encoding="UTF-8"?>
<status>
  <id>8374590857</id>
  <text>博客已老 围脖当道 http://sinaurl.cn/hMxBc </text>
  <source>
    <a href="http://t.sina.com.cn">Web</a>
  </source>
  <favorited>false</favorited>
  <truncated>false</truncated>
  <created_at>Tue Nov 17 20:11:24 +0800 2009</created_at>
  <user>
    <id>10503</id>
    <screen_name>timyang</screen_name>
    <name>Tim Yang</name>
    <location>广州</location>
    <description>blog: timyang.net</description>
    <profile_image_url>http://tt8.sinaimg.cn/10503/50/1256306049</profile_image_url>
    <followers_count>0</followers_count>
    <friends_count>0</friends_count>
    <statuses_count>0</statuses_count>
    <favourites_count>0</favourites_count>
  </user>
</status>

JSON:示例

   {"created_at":"Thu Jan 07 10:51:19 +0800 2010",
   "id":142296,
   "text":"http://sinaurl.cn/hi4sD",
   "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":"",
   "thumbnail_pic":"http://static12.photo.sina.com.cn/thumbnail/5219ba9d072da9d51f7bb",
   "bmiddle_pic":"http://static12.photo.sina.com.cn/bmiddle/5219ba9d072da9d51f7bb",
   "original_pic":"http://static12.photo.sina.com.cn/orignal/5219ba9d072da9d51f7bb",
   "geo":null,
   "user":
{"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":0, "favourites_count":29, "created_at":"Thu Jan 01 08:00:00 +0800 1970", "following":false, "geo_enabled":false, "verified":true}, "apiState":3}

使用示例

  • XML:

http://api.t.sina.com.cn/statuses/upload.xml

  • JSON:

http://api.t.sina.com.cn/statuses/upload.json