版權(quán)說(shuō)明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡(jiǎn)介
1、xweibo v2.1 xweibo 微博 api 接口說(shuō)明xweibo 2011 年 6 月xweibo v2.1 目錄目錄1接口概述 . 12api 調(diào)用說(shuō)明 . 12.1參數(shù)說(shuō)明: . 12.2api 訪問(wèn)方式說(shuō)明: . 13api 返回值說(shuō)明 . 23.1返回格式: json . 23.2返回結(jié)構(gòu): rst:返回結(jié)果 ,errno: 結(jié)果代碼 ,err: 錯(cuò)誤提示信息 . 24錯(cuò)誤代碼 . 24.1參數(shù)檢查錯(cuò)誤代碼: . 24.2平臺(tái)級(jí)別錯(cuò)誤代碼: . 35接口介紹 . 35.1微博訪問(wèn)接口 . 35.1.1action.update :發(fā)布一條微博消息 . 35.1.2action.
2、destroy :刪除一條微博信息 . 45.1.3action.repost :轉(zhuǎn)發(fā)一條微博信息 . ment :對(duì)一條微博信息進(jìn)行評(píng)論. ment.destroy :刪除微博評(píng)論 . 65.1.6action.reply :回復(fù)微博評(píng)論消息 . 75.2關(guān)注接口 . 95.2.1action.createfriendship :關(guān)注某用戶 . 95.2.2action.deletefriendship :取消關(guān)注或移除粉絲 . 105.2.3action.friendship :查看某人是否為指定用戶的粉絲 . 105.3收藏接口 . 115.3.1action.createfavorit
3、e :添加收藏 . 115.3.2action.deletefavorite :刪除收藏 . 115.4賬號(hào)接口 . 125.4.1action.updateprofileimage:更改頭像 . 12xweibo v2.1 5.4.2action.saveprofile :更改個(gè)人資料 . 125.5獲取下行數(shù)據(jù)集( timeline )接口 . 135.5.1action.unread :獲取當(dāng)前用戶未讀消息數(shù) . 135.5.2action.getcomments :獲取指定微博的評(píng)論列表 . 135.5.3action.getcounts :批量獲取評(píng)論數(shù)和轉(zhuǎn)發(fā)數(shù) . 1165.5.4
4、action.cleartip :未讀消息數(shù)清零接口. 1165.6私信接口 . 165.6.1action.senddirectmessage:發(fā)送私信 . 165.6.2action.deletedirectmessage:刪除私信 . 165.7用戶接口 . 175.7.1action.createblocks :加入黑名單 . 175.7.2action.deleteblocks :刪除黑名單 . 175.7.3action.createtags :添加標(biāo)簽 . 185.7.4action.deletetags :刪除標(biāo)簽 . 185.8其它接口 . 195.8.1action.set
5、ting :tip 個(gè)人設(shè)置 . 195.8.2action.sinaurl :解析短鏈接 . 195.8.4action.savenotice :更新提醒設(shè)置和 tip 顯示方式 . 21xweibo v2.1 -1- xweibo 微博 api 接口說(shuō)明1 接口概述xweibo 不僅提供了快速、低成本架設(shè)微博的解決方案,還提供了讓第三方調(diào)用的 api 接口。第三方通過(guò)調(diào)用這些api 接口可以輕松地為xweibo 推送內(nèi)容,同時(shí)也能夠從 xweibo 獲取所需的內(nèi)容,在自有網(wǎng)站上進(jìn)行展示。xweibo 微博 api 接口是一座連接第三方網(wǎng)站與xweibo 的橋梁。通過(guò)它,站長(zhǎng)可以實(shí)現(xiàn)自有站點(diǎn)
6、與xweibo 無(wú)縫連接,進(jìn)行無(wú)障礙的內(nèi)容共享。2 api 調(diào)用說(shuō)明2.1 參數(shù)說(shuō)明:在請(qǐng)求 api 的同時(shí), post多以下三個(gè)參數(shù):api_sign:簽名值:md5(api_wb_akey .#.$api_uid.#.$api_time.#.api_wb_skey.#.$m.#.api_key); api_wb_akey :默認(rèn)使用申請(qǐng)微博應(yīng)用的app key api_wb_skey :默認(rèn)使用申請(qǐng)微博應(yīng)用的app secret $m:是訪問(wèn) api 的接口名。比如要訪問(wèn)發(fā)微博api,$m = update 。api_key :約定加密的 key api_uid:第三方綁定的用戶uid a
7、pi_time:當(dāng)前請(qǐng)求的時(shí)間,時(shí)間戳。2.2 api 訪問(wèn)方式說(shuō)明:某些 api 允許使用匿名身份或者系統(tǒng)默認(rèn)帳號(hào)進(jìn)行訪問(wèn)如果需要使用匿名身份訪問(wèn)部分api :請(qǐng)?jiān)O(shè)置變量: $allow_anonymous 的值,默認(rèn)是空數(shù)組。比如$allow_anonymous = array(gettokenauthorizeurl );那么接口: gettokenauthorizeurl 就可以使用匿名身份訪問(wèn)xweibo v2.1 -2- 如果需要使用默認(rèn)帳號(hào)訪問(wèn)部分api :請(qǐng)?jiān)O(shè)置變量: $allow_others的值,默認(rèn)是空數(shù)組。比如$allow_others = array(update,
8、comment );那么接口: update 和 comment就可以使用系統(tǒng)帳號(hào)訪問(wèn)使用這個(gè)兩種方式訪問(wèn)api ,api_uid 可以為空或一個(gè)不存在的uid 值。3 api 返回值說(shuō)明3.1 返回格式: json 3.2 返回結(jié)構(gòu): rst: 返回結(jié)果 ,errno: 結(jié)果代碼 ,err: 錯(cuò)誤提示信息 1) 返回結(jié)果 :json 格式的字符串或單獨(dú)的字符2) 結(jié)果代碼 :正確的返回是: 0, 錯(cuò)誤的返回是:一個(gè)錯(cuò)誤代碼3) 錯(cuò)誤提示信息 :方便分析問(wèn)題。(自定義的或接口本身的錯(cuò)誤內(nèi)容)4 錯(cuò)誤代碼錯(cuò)誤以 7 位數(shù)字表示。比如: 1010000 前兩位表示:主類(lèi)別,第二,三位表示:子類(lèi)別,
9、后三位用來(lái)表示錯(cuò)誤代碼。錯(cuò)誤代碼分為公共的錯(cuò)誤代碼和接口特定的錯(cuò)誤代碼。參數(shù)檢查錯(cuò)誤代碼以及平臺(tái)級(jí)別錯(cuò)誤屬于公共的錯(cuò)誤代碼,如下所示:4.1 參數(shù)檢查錯(cuò)誤代碼:錯(cuò)誤代碼說(shuō)明errno:1010000 err:parameter can not be empty 參數(shù)不能為空。errno:1010002 err:parameter must be a number 參數(shù)必須為數(shù)字。errno:1010003 err:parameters for the email to format 參數(shù)格式必須為email 格式。errno:1010004 err:parameters for json re
10、quest directly to format 參數(shù)格式必須為json 格式。errno:1010005 參數(shù)長(zhǎng)度超出限制。xweibo v2.1 -3- err:parameter length exceeds limit errno:1010006 err:parameter can not use sina email 參數(shù) email 不能用 sina 域下的郵箱。errno:1010007 err:parameters contain sensitive characters 參數(shù)含有敏感字符。4.2 平臺(tái)級(jí)別錯(cuò)誤代碼:錯(cuò)誤代碼說(shuō)明errno:1040000 err:40113:o
11、auth error: token_rejected! token 不合法。error:1040001 err:40313:error: invalid weibo user! 當(dāng)前用戶沒(méi)有開(kāi)通微博。error:1040002 err:access timeout or access denied api 訪問(wèn)超時(shí)或拒絕訪問(wèn)。error:1040003 err:source paramter(appkey) is missing oauth token 為空。error:1040004 err:40028:請(qǐng)不要發(fā)表違法和不良信息!當(dāng)前用戶在官方微博上給屏蔽。error:1040005 err
12、:40028:黑名單用戶當(dāng)前用戶是黑名單用戶。5 接口介紹5.1 微博訪問(wèn)接口5.1.1 action.update:發(fā)布一條微博消息4) url:http:/server/?m=api/weibo/action.update5) 請(qǐng)求參數(shù):名稱(chēng)描述text 微博內(nèi)容,不能為空,內(nèi)容不能超過(guò)140 個(gè)漢字pic 圖片 pid, 有傳該參數(shù)就是分享圖片,沒(méi)有就是發(fā)微博http method post xweibo v2.1 -4- rst: data: id:3070003351, cr:wed oct 13 18:55:42 +0800 2010, f:0, s:discuzu63d2u4ef
13、6, tx:u54c8u54c8, tp:null, mp:null, op:null, u:id:1819991891, sn:test_weibo, p:http:/ v:0, sina_v:0 , errno:0, err: rst:true, errno:0, err: 6) 返回格式:7) 接口錯(cuò)誤代碼:錯(cuò)誤代碼說(shuō)明errno:1020000 err:40012:error: content is null! 發(fā)微博內(nèi)容不能為空。errno:1020001 err:40013:error: text too long, please input text less than 140
14、characters! 發(fā)微博內(nèi)容超過(guò)140 個(gè)字。errno:1020002 err:40025:error: repeated weibo text! 發(fā)微博內(nèi)容重復(fù)。5.1.2 action.destroy:刪除一條微博信息8) url:http:/server/?m=api/weibo/action.destroy9) 參數(shù)列表:名稱(chēng)描述id 微博 id http method post 10) 返回格式:xweibo v2.1 -5- rst:data: id:3070211503, cr:wed oct 13 19:10:33 +0800 2010, f:0, s:discuzu6
15、3d2u4ef6, tx:u8f6cu53d1u5faeu535a, tp:null, mp:null, op:null, u:id:1819991891, sn:test_weibo, p:http:/ v:0, sina_v:0, rt:id:3070003351, cr:wed oct 13 18:55:42 +0800 2010, f:0, s:discuzu63d2u4ef6, tx:u54c8u54c8, 11) 接口錯(cuò)誤代碼:錯(cuò)誤代碼說(shuō)明errno:1020300 err:40016:error: weibo id is null! 刪除微博id 為空。errno:1020301
16、 err:40031:error: target weibo does not exist! 刪除微博id 不存在。errno:1020302 err:40036:error: not your own weibo! 刪除的微博不是本人發(fā)的。5.1.3 action.repost:轉(zhuǎn)發(fā)一條微博信息12) url:http:/server/?m=api/weibo/action.repost13) 參數(shù)列表名稱(chēng)描述id 微博 id text 微博內(nèi)容,不能為空,內(nèi)容不能超過(guò)140 個(gè)漢字rtids 作為某人的評(píng)論,多個(gè)用逗號(hào)隔開(kāi)http method post 14) 返回格式:xweibo v
17、2.1 -6- rst:comment: id:3818812429, create_at:1u5206u949fu524d, text:test, nick:test_weibo, uid:1819991891, profileimg:http:/ , errno:0, err: tp:null, mp:null, op:null, u:id:1819991891, sn:test_weibo, p:http:/ v:0, sina_v:0 , errno:0, err: 15) 接口錯(cuò)誤代碼錯(cuò)誤代碼說(shuō)明errno:1020200 err:40016:error: weibo id is n
18、ull! 轉(zhuǎn)發(fā)微博id 為空。errno:1020201 err:40013:error: text too long, please input text less than 140 characters! 轉(zhuǎn)發(fā)微博內(nèi)容超過(guò)140 個(gè)字。5.1.4 ment:對(duì)一條微博信息進(jìn)行評(píng)論16) url:http:/server/?m=api/weibo/ment17) 參數(shù)列表:名稱(chēng)描述id 微博 id text 微博內(nèi)容,不能為空,內(nèi)容不能超過(guò)140 個(gè)漢字forward 是否作為一條新微博發(fā)布,1 是, 0 不作為type 評(píng)論顯現(xiàn)頭像類(lèi)型, 默認(rèn)是 1,30 大小的頭像,2,50 大小的頭像
19、http method post 18) 返回格式:xweibo v2.1 -7- rst:total:null,errno:0, err: 19) 接口錯(cuò)誤代碼:錯(cuò)誤代碼說(shuō)明errno:1020400 err:40016:error: weibo id is null! 評(píng)論微博id 為空。errno:1020401 err:40012:error: content is null! 評(píng)論微博內(nèi)容為空。errno:1020402 err:40031:error: target weibo does not exist! 評(píng)論微博id 不存在。errno:1020403 err:40013:e
20、rror: text too long, please input text less than 140 characters! 評(píng)論微博內(nèi)容超過(guò)140 個(gè)字。5.1.5 ment.destroy:刪除微博評(píng)論20) url:http:/server/?m=api/weibo/ment_destory21) 參數(shù)列表:名稱(chēng)描述id 評(píng)論微博id (多個(gè) id 用逗號(hào)隔開(kāi) ) http method post 22) 返回格式:23) 接口錯(cuò)誤代碼錯(cuò)誤代碼說(shuō)明errno:1020600 err:40020:error: comment id is null! 刪除評(píng)論id 為空。errno:10
21、20601 err:40015:error: not your own comment! 刪除評(píng)論id 不存在或不是本人發(fā)的。errno:1020602 err:刪除評(píng)論失敗。5.1.6 action.reply:回復(fù)微博評(píng)論消息24) url:http:/server/?m=api/weibo/action.replay25) 參數(shù)列表:名稱(chēng)描述xweibo v2.1 -8- rst:comment:id:3818812429, create_at:1u5206u949fu524d, text:test, nick:test_weibo, uid:1819991891, profileimg
22、:http:/ sina_v:0, wb:id:3070211503, cr:wed oct 13 19:10:33 +0800 2010, f:0, s:discuzu63d2u4ef6, tx:u8f6cu53d1u5faeu535a, tp:null, mp:null, op:null, u:id:1819991891, sn:test_weibo, p:http:/ v:0, sina_v:0, rt:id:3070003351, cr:wed oct 13 18:55:42 +0800 2010, f:0, s:discuzu63d2u4ef6, tx:u54c8u54c8, tp:
23、null, mp:null, op:null, u:id:1819991891, sn:test_weibo, p:http:/ id 微博 id cid 要評(píng)論的評(píng)論id text 微博內(nèi)容,不能為空,內(nèi)容不能超過(guò)140 個(gè)漢字forward 是否作為一條新微博發(fā)布,1 是, 0 不作為type 評(píng)論顯現(xiàn)頭像類(lèi)型, 默認(rèn)是 1,30 大小的頭像,2,50 大小的頭像http method post 26) 返回格式:xweibo v2.1 -9- rst:true, errno:0, err: v:0,sina_v:0 , errno:0, err: 27) 接口錯(cuò)誤代碼:錯(cuò)誤代碼說(shuō)明err
24、no:1020500 err:40016:error: weibo id is null! 回復(fù)評(píng)論微博id 為空。errno:1020501 err:40020:error: comment id is null! 回復(fù)評(píng)論評(píng)論id 為空。errno:1020502 err:40012:error: content is null!回復(fù)評(píng)論評(píng)論內(nèi)容為空。errno:1020503 err:40013:error: text too long, please input text less than 140 characters! 回復(fù)評(píng)論評(píng)論內(nèi)容超過(guò)140 個(gè)字。errno:1020504
25、err:40031:error: target weibo does not exist! 回復(fù)評(píng)論微博id 不存在。5.2 關(guān)注接口5.2.1 action.createfriendship:關(guān)注某用戶28) url:http:/server/?m=api/weibo/action.createfriendship29) 參數(shù)列表:名稱(chēng)描述uid 要關(guān)注的用戶uid 或微博昵稱(chēng)(用戶 id,支持批量關(guān)注,多個(gè)用逗號(hào)隔開(kāi)) type 類(lèi)型,默認(rèn)是0,0表示 uid 是用戶 id,1 表示 uid 是微博昵稱(chēng)http method post 30) 返回格式:31) 接口錯(cuò)誤代碼:錯(cuò)誤代碼說(shuō)明x
26、weibo v2.1 -10- rst:true, errno:0, err: rst:true, errno:0, err: errno:1020800 err:40028:添加關(guān)注操作失敗關(guān)注的用戶id 為空或本人。errno:1020801 err:40028:fuid 錯(cuò)誤關(guān)注的用戶id 不存在。errno:1020804 err:關(guān)注失敗。5.2.2 action.deletefriendship:取消關(guān)注或移除粉絲32) url:http:/server/?m=api/weibo/action.deletefriendship33) 參數(shù)列表:名稱(chēng)描述id 用戶 uid name
27、要關(guān)注的微博昵稱(chēng)is_follower 默認(rèn)為 0。1 表示為移除粉絲,0 表示為取消關(guān)注http method post 34) 返回格式:35) 接口錯(cuò)誤代碼:錯(cuò)誤代碼說(shuō)明errno:1020802 err:40028:fuid 錯(cuò)誤取消關(guān)注的用戶id 為空或不存在。errno:1020803 err:40028:fuid 錯(cuò)誤取消關(guān)注的用戶name 為空或不存在。5.2.3 action.friendship:查看某人是否為指定用戶的粉絲36) url:http:/server/?m=api/weibo/action.friendship37) 參數(shù)列表:名稱(chēng)描述t_id 要判斷的目的用
28、戶uid t_name 要判斷的目的微博昵稱(chēng)s_id 源用戶 uid ( 不指定,就使用當(dāng)前登錄用戶) s_name 源微博昵稱(chēng) (不指定,就使用當(dāng)前登錄用戶) http method post 38) 返回格式:xweibo v2.1 -11- rst:true, errno:0, err: rst:true, errno:0, err: 39) 接口錯(cuò)誤代碼:錯(cuò)誤代碼說(shuō)明errno:1021200 err: 40026:error: please input right target user id (or screen_name)!要判斷的目的用戶id 或 name 不存在。40) 5.
29、3 收藏接口5.3.1 action.createfavorite:添加收藏41) url:http:/server/?m=api/weibo/action.createfavorite42) 參數(shù)列表:名稱(chēng)描述id 要收藏的微博id http method post 43) 返回格式:44) 接口錯(cuò)誤代碼:錯(cuò)誤代碼說(shuō)明errno:1020700 err:50001:error: system error! 收藏微博微博id 為空或不存在。5.3.2 action.deletefavorite:刪除收藏45) url:http:/server/?m=api/weibo/action.delet
30、efavorite46) 參數(shù)列表:名稱(chēng)描述id 收藏的微博id http method post 47) 返回格式:48) 接口錯(cuò)誤代碼:xweibo v2.1 -12- rst:true, errno:0, err: 錯(cuò)誤代碼說(shuō)明errno:1020701 err:40031:error: target weibo does not exist! 刪除收藏微博微博id 為空或不存在。5.4 賬號(hào)接口5.4.1 action.updateprofileimage:更改頭像49) url:http:/server/?m=api/weibo/action.updateprofileimage50
31、) 參數(shù)列表:名稱(chēng)描述image 修改頭像的路徑http method post 51) 返回格式:52) 接口錯(cuò)誤代碼:錯(cuò)誤代碼說(shuō)明errno:1021400 err:40009:error: system error, does multipart has image? 上傳的不是圖片或圖片內(nèi)容為空。errno:1021401 err:40045:error: unsupported image type, only suport jpg, gif, png!上傳的圖片格式不正確。errno:1021402 err:40008:error: image size error上傳的圖片大小超
32、過(guò)1m。5.4.2 action.saveprofile:更改個(gè)人資料53) url:http:/server/?m=api/weibo/action.saveprofile54) 參數(shù)列表:名稱(chēng)描述nick 昵稱(chēng),可選參數(shù).不超過(guò) 20 個(gè)漢字gender 性別province 省份city 城市description 簡(jiǎn)介http method post xweibo v2.1 -13- rst:true, errno:0, err: rst:unread: 新微博數(shù) ,me 數(shù),評(píng)論數(shù) ,粉絲 ,私信 ,data:null, errno:0,err: 55) 返回格式:56) 接口錯(cuò)誤代
33、碼:錯(cuò)誤代碼說(shuō)明errno:1021300 err:40028:m01129 更改的昵稱(chēng)已經(jīng)存在。5.5 獲取下行數(shù)據(jù)集(timeline)接口5.5.1 action.unread:獲取當(dāng)前用戶未讀消息數(shù)57) url:http:/server/?m=api/weibo/action.unread58) 參數(shù)列表:名稱(chēng)描述id 最新微博的id http method post 59) 返回格式:60) 接口錯(cuò)誤代碼:無(wú)接口特定錯(cuò)誤代碼,參考3.2 平臺(tái)級(jí)別錯(cuò)誤;5.5.2 action.getcomments:獲取指定微博的評(píng)論列表61) url:http:/server/?m=api/we
34、ibo/action.getcomments62) 參數(shù)列表:名稱(chēng)描述id 微博的 id page 頁(yè)碼數(shù)type 列表類(lèi)型 , 默認(rèn)是 1,微博列表的某條微博評(píng)論列表,2 單條微博的詳細(xì)評(píng)論列表http method post xweibo v2.1 -14- rst:0: id:3816696803, create_at:u4ecau5929 17:32, text:u56deu590da u6765u6765u6765www, nick:u706bu9b54u4e95, uid:1692630323, 63) 返回格式:xweibo v2.1 -15- profileimg:http:/
35、 sina_v:0, 1: id:3815694103, create_at:u4ecau5929 16:31, text:u54c8u54c8u54c8u54c8u54c8u6211u518du6765u5e2eu4f60u5356u6389u7b97u4e86uff01, nick:momou73cdu59ae, uid:1781461767, profileimg:http:/ sina_v:0, 2: id:3815281087, create_at:u4ecau5929 16:05, text:u56deu590dpeu9171u662fu6296mu5927u7c73:150usd
36、u3067u3059u3088u301cu7d76u5bfeu3061u3087u30fcu5b89u3044u3088u3053u3063u3061u306eu3068u6bd4u3079u305fu30890v0, nick:u706bu9b54u4e95, uid:1692630323, profileimg:http:/ sina_v:0, 3: id:3815241489, create_at:u4ecau5929 16:02, text:u3044u304fu3089u3061u3083u3093u3067u5024u6bb5u3092u78bau304bu3081u3088u30
37、46d(_o), nick:peu9171u662fu6296mu5927u7c73, uid:1787196917, profileimg:http:/ total:4, limit:10, errno:0, err: 64) 接口錯(cuò)誤代碼:錯(cuò)誤代碼說(shuō)明xweibo v2.1 -16- rst:id:0,0, 3067651153:4,1, 3070211503:0,0, 3053424475:0,0, 3052304453:13,21, 3068159149:0,0, 3050972757:0,0, 3053380305:0,0, 3053934331:0,0, 3053538643:0,
38、0, 3054069215:0,0, 3070003351:0,1, errno:0, err: errno:1020400 err:40016:error: weibo id is null! 評(píng)論微博id 為空。errno:1020402 err:40031:error: target weibo does not exist! 評(píng)論微博id 不存在。5.5.3 action.getcounts:批量獲取評(píng)論數(shù)和轉(zhuǎn)發(fā)數(shù)65) url:http:/server/?m=api/weibo/action.getcounts66) 參數(shù)列表:名稱(chēng)描述ids 微博 id,多個(gè)以逗號(hào)隔開(kāi)。如44333
39、,552323,xxx .http method post 67) 返回格式:68) 接口錯(cuò)誤代碼:無(wú)接口特定錯(cuò)誤代碼,參考3.2 平臺(tái)級(jí)別錯(cuò)誤。5.5.4 action.cleartip:未讀消息數(shù)清零接口69) url:http:/server/?m=api/weibo/action.cleartip70) 參數(shù)列表:名稱(chēng)描述type 1 是清零評(píng)論,2 是清零 me, 3 是清零私信,4 是清零粉絲,默認(rèn)是清零全部xweibo v2.1 -17- rst:true, errno:0, err: rst:true, errno:0, err: http method get 71) 72)
40、 返回格式:73) 接口錯(cuò)誤代碼:無(wú)接口特定錯(cuò)誤代碼,參考3.2 平臺(tái)級(jí)別錯(cuò)誤。5.6 私信接口5.6.1 action.senddirectmessage :發(fā)送私信74) url:http:/server/?m=api/weibo/action.senddirectmessage75) 參數(shù)列表:名稱(chēng)描述id 用戶賬號(hào)id name 用戶微博昵稱(chēng)text 私信內(nèi)容http method post 76) 返回格式:77) 接口錯(cuò)誤代碼:錯(cuò)誤代碼說(shuō)明errno:1020900 err:40012:error: content is null!發(fā)私信的內(nèi)容為空。errno:1020901 er
41、r:40017:error: cant send direct message to user who is not your follower! 發(fā)送方的id 為空或本人。errno:1020902 err:40017:error: cant send direct message to user who is not your follower! 發(fā)送方的不是本人的粉絲。5.6.2 action.deletedirectmessage:刪除私信78) url:http:/server/?m=api/weibo/action.deletedirectmessage79) 參數(shù)列表:xweib
42、o v2.1 -18- rst:true, errno:0, err: rst:true, errno:0, err: 名稱(chēng)描述id 私信 id http method post 80) 返回格式:81) 接口錯(cuò)誤代碼:錯(cuò)誤代碼說(shuō)明errno:1020903 err : 40021:error: not your own direct message!刪除私信id 為空或不是本人發(fā)的。errno:1020904 err:40010:error: direct message does not exist! 刪除私信id 不存在。5.7 用戶接口5.7.1 action.createblocks
43、:加入黑名單82) url:http:/server/?m=api/weibo/action.createblocks83) 參數(shù)列表:名稱(chēng)描述id 用戶 id (任意選擇一個(gè)參數(shù)) name 用戶昵稱(chēng)(任意選擇一個(gè)參數(shù)) http method post 84) 返回格式:85) 接口錯(cuò)誤代碼:錯(cuò)誤代碼說(shuō)明error:1021600 err:40023:error: user does not exists!要加入黑名單的用戶不存在。5.7.2 action.deleteblocks :刪除黑名單86) url:http:/server/?m=api/weibo/action.deleteb
44、locks87) 參數(shù)列表:xweibo v2.1 -19- rst:true, errno:0, err: rst:data:tagid:xxx, ,errno:0, err: rst:true, errno:0, err: 名稱(chēng)描述id 用戶 id (任意選擇一個(gè)參數(shù)) name 用戶昵稱(chēng)(任意選擇一個(gè)參數(shù)) http method post 88) 89) 返回格式:接口錯(cuò)誤代碼:90) 接口錯(cuò)誤代碼無(wú)接口特定錯(cuò)誤代碼,參考3.2 平臺(tái)級(jí)別錯(cuò)誤。5.7.3 action.createtags:添加標(biāo)簽91) url:http:/server/?m=api/weibo/action.cre
45、atetags92) 參數(shù)列表:名稱(chēng)描述tagname 標(biāo)簽名字(多個(gè)用逗號(hào)隔開(kāi)) http method post 93) 返回格式:94) 接口錯(cuò)誤代碼:錯(cuò)誤代碼說(shuō)明error:1021500 err:40027:error: tags parameter is null標(biāo)簽為空。error:1021501 err:system error 添加標(biāo)簽失敗。5.7.4 action.deletetags :刪除標(biāo)簽95) url:http:/server/?m=api/weibo/action.deletetags96) 參數(shù)列表:名稱(chēng)描述tag_id 標(biāo)簽 id http method p
46、ost 97) 返回格式:xweibo v2.1 -20- rst:true, errno:0, err: 98) 接口錯(cuò)誤代碼:錯(cuò)誤代碼說(shuō)明error:1021502 err:40027:error: tags parameter is null!刪除標(biāo)簽的標(biāo)簽id 為空5.8 其它接口5.8.1 action.setting:tip 個(gè)人設(shè)置99) url:http:/server/?m=api/weibo/action.setting100) 參數(shù)列表:名稱(chēng)描述type 設(shè)置類(lèi)型,默認(rèn)是 autoshow 新微博顯示方式, tipshow未讀數(shù)顯示方式http method post 101) 返回格式:102) 接口錯(cuò)誤代碼:錯(cuò)誤代碼說(shuō)明errno:2010000 err:user_id or options can not be empty用戶 id 或者選項(xiàng)不能為空。errno:2010001 err:set the option does not exist 設(shè)置選項(xiàng)不存在。errno:20100
溫馨提示
- 1. 本站所有資源如無(wú)特殊說(shuō)明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒(méi)有圖紙預(yù)覽就沒(méi)有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫(kù)網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 《夢(mèng)回繁華》-八年級(jí)語(yǔ)文上冊(cè)同步備課 教學(xué)設(shè)計(jì)(統(tǒng)編版)
- 江蘇省金壇市七年級(jí)體育與健康上冊(cè) 女生800長(zhǎng)跑測(cè)驗(yàn)教案
- 八年級(jí)生物上冊(cè) 5.1.3《軟體動(dòng)物和節(jié)肢動(dòng)物》教案2 (新版)新人教版
- 2024-2025學(xué)年高中語(yǔ)文 第2單元 置身詩(shī)境緣景明情 9 夢(mèng)游天姥吟留別教案 新人教版選修《中國(guó)古代詩(shī)歌散文欣賞》
- 2023三年級(jí)數(shù)學(xué)下冊(cè) 六 走進(jìn)天文館-年、月、日信息窗1 24時(shí)計(jì)時(shí)法教案 青島版六三制
- 2024-2025學(xué)年新教材高中政治 第一單元 探索世界與把握規(guī)律 1.3 科學(xué)的世界觀和方法論教案 部編版必修4
- 二年級(jí)語(yǔ)文下冊(cè) 課文1 4 鄧小平爺爺植樹(shù)第1課時(shí)教案 新人教版
- 2024-2025學(xué)年新教材高中生物 第五章 基因突變及其他變異 第3節(jié) 人類(lèi)遺傳病教案 新人教版必修第二冊(cè)
- 出行帶小孩委托書(shū)范文
- 人教A版河北省唐山市2023-2024學(xué)年高一上學(xué)期期末模擬數(shù)學(xué)試題
- 河南省洛陽(yáng)市2022-2023學(xué)年九年級(jí)上學(xué)期期末數(shù)學(xué)試題
- 2024年大學(xué)新生開(kāi)學(xué)第一課-如何開(kāi)啟你的大學(xué)生活課件
- 新蘇教版四年級(jí)上冊(cè)科學(xué)全冊(cè)知識(shí)點(diǎn)
- 養(yǎng)生館轉(zhuǎn)讓合同協(xié)議書(shū)
- 電力專(zhuān)業(yè)數(shù)據(jù)傳輸(EPDT)通信系統(tǒng) 設(shè)備功能技術(shù)要求和測(cè)試方法
- 2023年高中學(xué)業(yè)水平考核美術(shù)試題
- 質(zhì)保書(shū)模板(2024版)
- 統(tǒng)編版2024年新教材七年級(jí)上冊(cè)道德與法治8.1《認(rèn)識(shí)生命》教案
- 注水泵工(中級(jí))技能鑒定理論考試題庫(kù)(含答案)
- 胃癌介入治療的臨床分析與療效評(píng)價(jià)課件
- DL∕T 1683-2017 1000MW等級(jí)超超臨界機(jī)組運(yùn)行導(dǎo)則
評(píng)論
0/150
提交評(píng)論