weiboclient.php 102 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616
  1. <?php
  2. namespace app\components\OpenAuth\core;
  3. use app\common\helpers\Session;
  4. use \Exception;
  5. use Yii;
  6. class Weiboclient {
  7. /**
  8. * 构造函数
  9. *
  10. * @access public
  11. * @param mixed $access_token OAuth认证返回的token
  12. * @param mixed $refresh_token OAuth认证返回的token secret
  13. * @return void
  14. */
  15. function __construct($access_token, $refresh_token = NULL) {
  16. $this->oauth = new Weibo($access_token, $refresh_token);
  17. }
  18. /**
  19. * 开启调试信息
  20. *
  21. * 开启调试信息后,SDK会将每次请求微博API所发送的POST Data、Headers以及请求信息、返回内容输出出来。
  22. *
  23. * @access public
  24. * @param bool $enable 是否开启调试信息
  25. * @return void
  26. */
  27. function set_debug($enable) {
  28. $this->oauth->debug = $enable;
  29. }
  30. /**
  31. * 设置用户IP
  32. *
  33. * SDK默认将会通过$_SERVER['REMOTE_ADDR']获取用户IP,在请求微博API时将用户IP附加到Request Header中。但某些情况下$_SERVER['REMOTE_ADDR']取到的IP并非用户IP,而是一个固定的IP(例如使用SAE的Cron或TaskQueue服务时),此时就有可能会造成该固定IP达到微博API调用频率限额,导致API调用失败。此时可使用本方法设置用户IP,以避免此问题。
  34. *
  35. * @access public
  36. * @param string $ip 用户IP
  37. * @return bool IP为非法IP字符串时,返回false,否则返回true
  38. */
  39. function set_remote_ip($ip) {
  40. if (ip2long($ip) !== false) {
  41. $this->oauth->remote_ip = $ip;
  42. return true;
  43. } else {
  44. return false;
  45. }
  46. }
  47. /**
  48. * 获取最新的公共微博消息
  49. *
  50. * 对应API:{@link http://open.weibo.com/wiki/2/statuses/public_timeline statuses/public_timeline}
  51. *
  52. * @access public
  53. * @param int $count 单页返回的记录条数,默认为50。
  54. * @param int $page 返回结果的页码,默认为1。
  55. * @param int $base_app 是否只获取当前应用的数据。0为否(所有数据),1为是(仅当前应用),默认为0。
  56. * @return array
  57. */
  58. function public_timeline($page = 1, $count = 50, $base_app = 0) {
  59. $params = array();
  60. $params['count'] = intval($count);
  61. $params['page'] = intval($page);
  62. $params['base_app'] = intval($base_app);
  63. return $this->oauth->get('statuses/public_timeline', $params); //可能是接口的bug不能补全
  64. }
  65. /**
  66. * 获取当前登录用户及其所关注用户的最新微博消息。
  67. *
  68. * 获取当前登录用户及其所关注用户的最新微博消息。和用户登录 http://weibo.com 后在“我的首页”中看到的内容相同。同friends_timeline()
  69. * <br />对应API:{@link http://open.weibo.com/wiki/2/statuses/home_timeline statuses/home_timeline}
  70. *
  71. * @access public
  72. * @param int $page 指定返回结果的页码。根据当前登录用户所关注的用户数及这些被关注用户发表的微博数,翻页功能最多能查看的总记录数会有所不同,通常最多能查看1000条左右。默认值1。可选。
  73. * @param int $count 每次返回的记录数。缺省值50,最大值200。可选。
  74. * @param int $since_id 若指定此参数,则只返回ID比since_id大的微博消息(即比since_id发表时间晚的微博消息)。可选。
  75. * @param int $max_id 若指定此参数,则返回ID小于或等于max_id的微博消息。可选。
  76. * @param int $base_app 是否只获取当前应用的数据。0为否(所有数据),1为是(仅当前应用),默认为0。
  77. * @param int $feature 过滤类型ID,0:全部、1:原创、2:图片、3:视频、4:音乐,默认为0。
  78. * @return array
  79. */
  80. function home_timeline($page = 1, $count = 50, $since_id = 0, $max_id = 0, $base_app = 0, $feature = 0) {
  81. $params = array();
  82. if ($since_id) {
  83. $this->id_format($since_id);
  84. $params['since_id'] = $since_id;
  85. }
  86. if ($max_id) {
  87. $this->id_format($max_id);
  88. $params['max_id'] = $max_id;
  89. }
  90. $params['count'] = intval($count);
  91. $params['page'] = intval($page);
  92. $params['base_app'] = intval($base_app);
  93. $params['feature'] = intval($feature);
  94. return $this->oauth->get('statuses/home_timeline', $params);
  95. }
  96. /**
  97. * 获取当前登录用户及其所关注用户的最新微博消息。
  98. *
  99. * 获取当前登录用户及其所关注用户的最新微博消息。和用户登录 http://weibo.com 后在“我的首页”中看到的内容相同。同home_timeline()
  100. * <br />对应API:{@link http://open.weibo.com/wiki/2/statuses/friends_timeline statuses/friends_timeline}
  101. *
  102. * @access public
  103. * @param int $page 指定返回结果的页码。根据当前登录用户所关注的用户数及这些被关注用户发表的微博数,翻页功能最多能查看的总记录数会有所不同,通常最多能查看1000条左右。默认值1。可选。
  104. * @param int $count 每次返回的记录数。缺省值50,最大值200。可选。
  105. * @param int $since_id 若指定此参数,则只返回ID比since_id大的微博消息(即比since_id发表时间晚的微博消息)。可选。
  106. * @param int $max_id 若指定此参数,则返回ID小于或等于max_id的微博消息。可选。
  107. * @param int $base_app 是否基于当前应用来获取数据。1为限制本应用微博,0为不做限制。默认为0。可选。
  108. * @param int $feature 微博类型,0全部,1原创,2图片,3视频,4音乐. 返回指定类型的微博信息内容。转为为0。可选。
  109. * @return array
  110. */
  111. function friends_timeline($page = 1, $count = 50, $since_id = 0, $max_id = 0, $base_app = 0, $feature = 0) {
  112. return $this->home_timeline($since_id, $max_id, $count, $page, $base_app, $feature);
  113. }
  114. /**
  115. * 获取用户发布的微博信息列表
  116. *
  117. * 返回用户的发布的最近n条信息,和用户微博页面返回内容是一致的。此接口也可以请求其他用户的最新发表微博。
  118. * <br />对应API:{@link http://open.weibo.com/wiki/2/statuses/user_timeline statuses/user_timeline}
  119. *
  120. * @access public
  121. * @param int $page 页码
  122. * @param int $count 每次返回的最大记录数,最多返回200条,默认50。
  123. * @param mixed $uid 指定用户UID或微博昵称
  124. * @param int $since_id 若指定此参数,则只返回ID比since_id大的微博消息(即比since_id发表时间晚的微博消息)。可选。
  125. * @param int $max_id 若指定此参数,则返回ID小于或等于max_id的提到当前登录用户微博消息。可选。
  126. * @param int $base_app 是否基于当前应用来获取数据。1为限制本应用微博,0为不做限制。默认为0。
  127. * @param int $feature 过滤类型ID,0:全部、1:原创、2:图片、3:视频、4:音乐,默认为0。
  128. * @param int $trim_user 返回值中user信息开关,0:返回完整的user信息、1:user字段仅返回uid,默认为0。
  129. * @return array
  130. */
  131. function user_timeline_by_id($uid = NULL, $page = 1, $count = 50, $since_id = 0, $max_id = 0, $feature = 0, $trim_user = 0, $base_app = 0) {
  132. $params = array();
  133. $params['uid'] = $uid;
  134. if ($since_id) {
  135. $this->id_format($since_id);
  136. $params['since_id'] = $since_id;
  137. }
  138. if ($max_id) {
  139. $this->id_format($max_id);
  140. $params['max_id'] = $max_id;
  141. }
  142. $params['base_app'] = intval($base_app);
  143. $params['feature'] = intval($feature);
  144. $params['count'] = intval($count);
  145. $params['page'] = intval($page);
  146. $params['trim_user'] = intval($trim_user);
  147. return $this->oauth->get('statuses/user_timeline', $params);
  148. }
  149. /**
  150. * 获取用户发布的微博信息列表
  151. *
  152. * 返回用户的发布的最近n条信息,和用户微博页面返回内容是一致的。此接口也可以请求其他用户的最新发表微博。
  153. * <br />对应API:{@link http://open.weibo.com/wiki/2/statuses/user_timeline statuses/user_timeline}
  154. *
  155. * @access public
  156. * @param string $screen_name 微博昵称,主要是用来区分用户UID跟微博昵称,当二者一样而产生歧义的时候,建议使用该参数
  157. * @param int $page 页码
  158. * @param int $count 每次返回的最大记录数,最多返回200条,默认50。
  159. * @param int $since_id 若指定此参数,则只返回ID比since_id大的微博消息(即比since_id发表时间晚的微博消息)。可选。
  160. * @param int $max_id 若指定此参数,则返回ID小于或等于max_id的提到当前登录用户微博消息。可选。
  161. * @param int $feature 过滤类型ID,0:全部、1:原创、2:图片、3:视频、4:音乐,默认为0。
  162. * @param int $trim_user 返回值中user信息开关,0:返回完整的user信息、1:user字段仅返回uid,默认为0。
  163. * @param int $base_app 是否基于当前应用来获取数据。1为限制本应用微博,0为不做限制。默认为0。
  164. * @return array
  165. */
  166. function user_timeline_by_name($screen_name = NULL, $page = 1, $count = 50, $since_id = 0, $max_id = 0, $feature = 0, $trim_user = 0, $base_app = 0) {
  167. $params = array();
  168. $params['screen_name'] = $screen_name;
  169. if ($since_id) {
  170. $this->id_format($since_id);
  171. $params['since_id'] = $since_id;
  172. }
  173. if ($max_id) {
  174. $this->id_format($max_id);
  175. $params['max_id'] = $max_id;
  176. }
  177. $params['base_app'] = intval($base_app);
  178. $params['feature'] = intval($feature);
  179. $params['count'] = intval($count);
  180. $params['page'] = intval($page);
  181. $params['trim_user'] = intval($trim_user);
  182. return $this->oauth->get('statuses/user_timeline', $params);
  183. }
  184. /**
  185. * 批量获取指定的一批用户的timeline
  186. *
  187. * 对应API:{@link http://open.weibo.com/wiki/2/statuses/timeline_batch statuses/timeline_batch}
  188. *
  189. * @param string $screen_name 需要查询的用户昵称,用半角逗号分隔,一次最多20个
  190. * @param int $count 单页返回的记录条数,默认为50。
  191. * @param int $page 返回结果的页码,默认为1。
  192. * @param int $base_app 是否只获取当前应用的数据。0为否(所有数据),1为是(仅当前应用),默认为0。
  193. * @param int $feature 过滤类型ID,0:全部、1:原创、2:图片、3:视频、4:音乐,默认为0。
  194. * @return array
  195. */
  196. function timeline_batch_by_name($screen_name, $page = 1, $count = 50, $feature = 0, $base_app = 0) {
  197. $params = array();
  198. if (is_array($screen_name) && !empty($screen_name)) {
  199. $params['screen_name'] = join(',', $screen_name);
  200. } else {
  201. $params['screen_name'] = $screen_name;
  202. }
  203. $params['count'] = intval($count);
  204. $params['page'] = intval($page);
  205. $params['base_app'] = intval($base_app);
  206. $params['feature'] = intval($feature);
  207. return $this->oauth->get('statuses/timeline_batch', $params);
  208. }
  209. /**
  210. * 批量获取指定的一批用户的timeline
  211. *
  212. * 对应API:{@link http://open.weibo.com/wiki/2/statuses/timeline_batch statuses/timeline_batch}
  213. *
  214. * @param string $uids 需要查询的用户ID,用半角逗号分隔,一次最多20个。
  215. * @param int $count 单页返回的记录条数,默认为50。
  216. * @param int $page 返回结果的页码,默认为1。
  217. * @param int $base_app 是否只获取当前应用的数据。0为否(所有数据),1为是(仅当前应用),默认为0。
  218. * @param int $feature 过滤类型ID,0:全部、1:原创、2:图片、3:视频、4:音乐,默认为0。
  219. * @return array
  220. */
  221. function timeline_batch_by_id($uids, $page = 1, $count = 50, $feature = 0, $base_app = 0) {
  222. $params = array();
  223. if (is_array($uids) && !empty($uids)) {
  224. foreach ($uids as $k => $v) {
  225. $this->id_format($uids[$k]);
  226. }
  227. $params['uids'] = join(',', $uids);
  228. } else {
  229. $params['uids'] = $uids;
  230. }
  231. $params['count'] = intval($count);
  232. $params['page'] = intval($page);
  233. $params['base_app'] = intval($base_app);
  234. $params['feature'] = intval($feature);
  235. return $this->oauth->get('statuses/timeline_batch', $params);
  236. }
  237. /**
  238. * 返回一条原创微博消息的最新n条转发微博消息。本接口无法对非原创微博进行查询。
  239. *
  240. * 对应API:{@link http://open.weibo.com/wiki/2/statuses/repost_timeline statuses/repost_timeline}
  241. *
  242. * @access public
  243. * @param int $sid 要获取转发微博列表的原创微博ID。
  244. * @param int $page 返回结果的页码。
  245. * @param int $count 单页返回的最大记录数,最多返回200条,默认50。可选。
  246. * @param int $since_id 若指定此参数,则只返回ID比since_id大的记录(比since_id发表时间晚)。可选。
  247. * @param int $max_id 若指定此参数,则返回ID小于或等于max_id的记录。可选。
  248. * @param int $filter_by_author 作者筛选类型,0:全部、1:我关注的人、2:陌生人,默认为0。
  249. * @return array
  250. */
  251. function repost_timeline($sid, $page = 1, $count = 50, $since_id = 0, $max_id = 0, $filter_by_author = 0) {
  252. $this->id_format($sid);
  253. $params = array();
  254. $params['id'] = $sid;
  255. if ($since_id) {
  256. $this->id_format($since_id);
  257. $params['since_id'] = $since_id;
  258. }
  259. if ($max_id) {
  260. $this->id_format($max_id);
  261. $params['max_id'] = $max_id;
  262. }
  263. $params['filter_by_author'] = intval($filter_by_author);
  264. return $this->request_with_pager('statuses/repost_timeline', $page, $count, $params);
  265. }
  266. /**
  267. * 获取当前用户最新转发的n条微博消息
  268. *
  269. * 对应API:{@link http://open.weibo.com/wiki/2/statuses/repost_by_me statuses/repost_by_me}
  270. *
  271. * @access public
  272. * @param int $page 返回结果的页码。
  273. * @param int $count 每次返回的最大记录数,最多返回200条,默认50。可选。
  274. * @param int $since_id 若指定此参数,则只返回ID比since_id大的记录(比since_id发表时间晚)。可选。
  275. * @param int $max_id 若指定此参数,则返回ID小于或等于max_id的记录。可选。
  276. * @return array
  277. */
  278. function repost_by_me($page = 1, $count = 50, $since_id = 0, $max_id = 0) {
  279. $params = array();
  280. if ($since_id) {
  281. $this->id_format($since_id);
  282. $params['since_id'] = $since_id;
  283. }
  284. if ($max_id) {
  285. $this->id_format($max_id);
  286. $params['max_id'] = $max_id;
  287. }
  288. return $this->request_with_pager('statuses/repost_by_me', $page, $count, $params);
  289. }
  290. /**
  291. * 获取@当前用户的微博列表
  292. *
  293. * 返回最新n条提到登录用户的微博消息(即包含@username的微博消息)
  294. * <br />对应API:{@link http://open.weibo.com/wiki/2/statuses/mentions statuses/mentions}
  295. *
  296. * @access public
  297. * @param int $page 返回结果的页序号。
  298. * @param int $count 每次返回的最大记录数(即页面大小),不大于200,默认为50。
  299. * @param int $since_id 若指定此参数,则只返回ID比since_id大的微博消息(即比since_id发表时间晚的微博消息)。可选。
  300. * @param int $max_id 若指定此参数,则返回ID小于或等于max_id的提到当前登录用户微博消息。可选。
  301. * @param int $filter_by_author 作者筛选类型,0:全部、1:我关注的人、2:陌生人,默认为0。
  302. * @param int $filter_by_source 来源筛选类型,0:全部、1:来自微博、2:来自微群,默认为0。
  303. * @param int $filter_by_type 原创筛选类型,0:全部微博、1:原创的微博,默认为0。
  304. * @return array
  305. */
  306. function mentions($page = 1, $count = 50, $since_id = 0, $max_id = 0, $filter_by_author = 0, $filter_by_source = 0, $filter_by_type = 0) {
  307. $params = array();
  308. if ($since_id) {
  309. $this->id_format($since_id);
  310. $params['since_id'] = $since_id;
  311. }
  312. if ($max_id) {
  313. $this->id_format($max_id);
  314. $params['max_id'] = $max_id;
  315. }
  316. $params['filter_by_author'] = $filter_by_author;
  317. $params['filter_by_source'] = $filter_by_source;
  318. $params['filter_by_type'] = $filter_by_type;
  319. return $this->request_with_pager('statuses/mentions', $page, $count, $params);
  320. }
  321. /**
  322. * 根据ID获取单条微博信息内容
  323. *
  324. * 获取单条ID的微博信息,作者信息将同时返回。
  325. * <br />对应API:{@link http://open.weibo.com/wiki/2/statuses/show statuses/show}
  326. *
  327. * @access public
  328. * @param int $id 要获取已发表的微博ID, 如ID不存在返回空
  329. * @return array
  330. */
  331. function show_status($id) {
  332. $this->id_format($id);
  333. $params = array();
  334. $params['id'] = $id;
  335. return $this->oauth->get('statuses/show', $params);
  336. }
  337. /**
  338. * 根据微博id号获取微博的信息
  339. *
  340. * 对应API:{@link http://open.weibo.com/wiki/2/statuses/show_batch statuses/show_batch}
  341. *
  342. * @param string $ids 需要查询的微博ID,用半角逗号分隔,最多不超过50个。
  343. * @return array
  344. */
  345. function show_batch($ids) {
  346. $params = array();
  347. if (is_array($ids) && !empty($ids)) {
  348. foreach ($ids as $k => $v) {
  349. $this->id_format($ids[$k]);
  350. }
  351. $params['ids'] = join(',', $ids);
  352. } else {
  353. $params['ids'] = $ids;
  354. }
  355. return $this->oauth->get('statuses/show_batch', $params);
  356. }
  357. /**
  358. * 通过微博(评论、私信)ID获取其MID
  359. *
  360. * 对应API:{@link http://open.weibo.com/wiki/2/statuses/querymid statuses/querymid}
  361. *
  362. * @param int|string $id 需要查询的微博(评论、私信)ID,批量模式下,用半角逗号分隔,最多不超过20个。
  363. * @param int $type 获取类型,1:微博、2:评论、3:私信,默认为1。
  364. * @param int $is_batch 是否使用批量模式,0:否、1:是,默认为0。
  365. * @return array
  366. */
  367. function querymid($id, $type = 1, $is_batch = 0) {
  368. $params = array();
  369. $params['id'] = $id;
  370. $params['type'] = intval($type);
  371. $params['is_batch'] = intval($is_batch);
  372. return $this->oauth->get('statuses/querymid', $params);
  373. }
  374. /**
  375. * 通过微博(评论、私信)MID获取其ID
  376. *
  377. * 对应API:{@link http://open.weibo.com/wiki/2/statuses/queryid statuses/queryid}
  378. *
  379. * @param int|string $mid 需要查询的微博(评论、私信)MID,批量模式下,用半角逗号分隔,最多不超过20个。
  380. * @param int $type 获取类型,1:微博、2:评论、3:私信,默认为1。
  381. * @param int $is_batch 是否使用批量模式,0:否、1:是,默认为0。
  382. * @param int $inbox 仅对私信有效,当MID类型为私信时用此参数,0:发件箱、1:收件箱,默认为0 。
  383. * @param int $isBase62 MID是否是base62编码,0:否、1:是,默认为0。
  384. * @return array
  385. */
  386. function queryid($mid, $type = 1, $is_batch = 0, $inbox = 0, $isBase62 = 0) {
  387. $params = array();
  388. $params['mid'] = $mid;
  389. $params['type'] = intval($type);
  390. $params['is_batch'] = intval($is_batch);
  391. $params['inbox'] = intval($inbox);
  392. $params['isBase62'] = intval($isBase62);
  393. return $this->oauth->get('statuses/queryid', $params);
  394. }
  395. /**
  396. * 按天返回热门微博转发榜的微博列表
  397. *
  398. * 对应API:{@link http://open.weibo.com/wiki/2/statuses/hot/repost_daily statuses/hot/repost_daily}
  399. *
  400. * @param int $count 返回的记录条数,最大不超过50,默认为20。
  401. * @param int $base_app 是否只获取当前应用的数据。0为否(所有数据),1为是(仅当前应用),默认为0。
  402. * @return array
  403. */
  404. function repost_daily($count = 20, $base_app = 0) {
  405. $params = array();
  406. $params['count'] = intval($count);
  407. $params['base_app'] = intval($base_app);
  408. return $this->oauth->get('statuses/hot/repost_daily', $params);
  409. }
  410. /**
  411. * 按周返回热门微博转发榜的微博列表
  412. *
  413. * 对应API:{@link http://open.weibo.com/wiki/2/statuses/hot/repost_weekly statuses/hot/repost_weekly}
  414. *
  415. * @param int $count 返回的记录条数,最大不超过50,默认为20。
  416. * @param int $base_app 是否只获取当前应用的数据。0为否(所有数据),1为是(仅当前应用),默认为0。
  417. * @return array
  418. */
  419. function repost_weekly($count = 20, $base_app = 0) {
  420. $params = array();
  421. $params['count'] = intval($count);
  422. $params['base_app'] = intval($base_app);
  423. return $this->oauth->get('statuses/hot/repost_weekly', $params);
  424. }
  425. /**
  426. * 按天返回热门微博评论榜的微博列表
  427. *
  428. * 对应API:{@link http://open.weibo.com/wiki/2/statuses/hot/comments_daily statuses/hot/comments_daily}
  429. *
  430. * @param int $count 返回的记录条数,最大不超过50,默认为20。
  431. * @param int $base_app 是否只获取当前应用的数据。0为否(所有数据),1为是(仅当前应用),默认为0。
  432. * @return array
  433. */
  434. function comments_daily($count = 20, $base_app = 0) {
  435. $params = array();
  436. $params['count'] = intval($count);
  437. $params['base_app'] = intval($base_app);
  438. return $this->oauth->get('statuses/hot/comments_daily', $params);
  439. }
  440. /**
  441. * 按周返回热门微博评论榜的微博列表
  442. *
  443. * 对应API:{@link http://open.weibo.com/wiki/2/statuses/hot/comments_weekly statuses/hot/comments_weekly}
  444. *
  445. * @param int $count 返回的记录条数,最大不超过50,默认为20。
  446. * @param int $base_app 是否只获取当前应用的数据。0为否(所有数据),1为是(仅当前应用),默认为0。
  447. * @return array
  448. */
  449. function comments_weekly($count = 20, $base_app = 0) {
  450. $params = array();
  451. $params['count'] = intval($count);
  452. $params['base_app'] = intval($base_app);
  453. return $this->oauth->get('statuses/hot/comments_weekly', $params);
  454. }
  455. /**
  456. * 转发一条微博信息。
  457. *
  458. * 可加评论。为防止重复,发布的信息与最新信息一样话,将会被忽略。
  459. * <br />对应API:{@link http://open.weibo.com/wiki/2/statuses/repost statuses/repost}
  460. *
  461. * @access public
  462. * @param int $sid 转发的微博ID
  463. * @param string $text 添加的评论信息。可选。
  464. * @param int $is_comment 是否在转发的同时发表评论,0:否、1:评论给当前微博、2:评论给原微博、3:都评论,默认为0。
  465. * @return array
  466. */
  467. function repost($sid, $text = NULL, $is_comment = 0) {
  468. $this->id_format($sid);
  469. $params = array();
  470. $params['id'] = $sid;
  471. $params['is_comment'] = $is_comment;
  472. if ($text)
  473. $params['status'] = $text;
  474. return $this->oauth->post('statuses/repost', $params);
  475. }
  476. /**
  477. * 删除一条微博
  478. *
  479. * 根据ID删除微博消息。注意:只能删除自己发布的信息。
  480. * <br />对应API:{@link http://open.weibo.com/wiki/2/statuses/destroy statuses/destroy}
  481. *
  482. * @access public
  483. * @param int $id 要删除的微博ID
  484. * @return array
  485. */
  486. function delete($id) {
  487. return $this->destroy($id);
  488. }
  489. /**
  490. * 删除一条微博
  491. *
  492. * 删除微博。注意:只能删除自己发布的信息。
  493. * <br />对应API:{@link http://open.weibo.com/wiki/2/statuses/destroy statuses/destroy}
  494. *
  495. * @access public
  496. * @param int $id 要删除的微博ID
  497. * @return array
  498. */
  499. function destroy($id) {
  500. $this->id_format($id);
  501. $params = array();
  502. $params['id'] = $id;
  503. return $this->oauth->post('statuses/destroy', $params);
  504. }
  505. /**
  506. * 发表微博
  507. *
  508. * 发布一条微博信息。
  509. * <br />注意:lat和long参数需配合使用,用于标记发表微博消息时所在的地理位置,只有用户设置中geo_enabled=true时候地理位置信息才有效。
  510. * <br />注意:为防止重复提交,当用户发布的微博消息与上次成功发布的微博消息内容一样时,将返回400错误,给出错误提示:“40025:Error: repeated weibo text!“。
  511. * <br />对应API:{@link http://open.weibo.com/wiki/2/statuses/update statuses/update}
  512. *
  513. * @access public
  514. * @param string $status 要更新的微博信息。信息内容不超过140个汉字, 为空返回400错误。
  515. * @param float $lat 纬度,发表当前微博所在的地理位置,有效范围 -90.0到+90.0, +表示北纬。可选。
  516. * @param float $long 经度。有效范围-180.0到+180.0, +表示东经。可选。
  517. * @param mixed $annotations 可选参数。元数据,主要是为了方便第三方应用记录一些适合于自己使用的信息。每条微博可以包含一个或者多个元数据。请以json字串的形式提交,字串长度不超过512个字符,或者数组方式,要求json_encode后字串长度不超过512个字符。具体内容可以自定。例如:'[{"type2":123}, {"a":"b", "c":"d"}]'或array(array("type2"=>123), array("a"=>"b", "c"=>"d"))。
  518. * @return array
  519. */
  520. function update($status, $lat = NULL, $long = NULL, $annotations = NULL) {
  521. $params = array();
  522. $params['status'] = $status;
  523. if ($lat) {
  524. $params['lat'] = floatval($lat);
  525. }
  526. if ($long) {
  527. $params['long'] = floatval($long);
  528. }
  529. if (is_string($annotations)) {
  530. $params['annotations'] = $annotations;
  531. } elseif (is_array($annotations)) {
  532. $params['annotations'] = json_encode($annotations);
  533. }
  534. return $this->oauth->post('statuses/update', $params);
  535. }
  536. /**
  537. * 发表图片微博
  538. *
  539. * 发表图片微博消息。目前上传图片大小限制为<5M。
  540. * <br />注意:lat和long参数需配合使用,用于标记发表微博消息时所在的地理位置,只有用户设置中geo_enabled=true时候地理位置信息才有效。
  541. * <br />对应API:{@link http://open.weibo.com/wiki/2/statuses/upload statuses/upload}
  542. *
  543. * @access public
  544. * @param string $status 要更新的微博信息。信息内容不超过140个汉字, 为空返回400错误。
  545. * @param string $pic_path 要发布的图片路径, 支持url。[只支持png/jpg/gif三种格式, 增加格式请修改get_image_mime方法]
  546. * @param float $lat 纬度,发表当前微博所在的地理位置,有效范围 -90.0到+90.0, +表示北纬。可选。
  547. * @param float $long 可选参数,经度。有效范围-180.0到+180.0, +表示东经。可选。
  548. * @return array
  549. */
  550. function upload($status, $pic_path, $lat = NULL, $long = NULL) {
  551. $params = array();
  552. $params['status'] = $status;
  553. $params['pic'] = '@' . $pic_path;
  554. if ($lat) {
  555. $params['lat'] = floatval($lat);
  556. }
  557. if ($long) {
  558. $params['long'] = floatval($long);
  559. }
  560. return $this->oauth->post('statuses/upload', $params, true);
  561. }
  562. /**
  563. * 指定一个图片URL地址抓取后上传并同时发布一条新微博
  564. *
  565. * 对应API:{@link http://open.weibo.com/wiki/2/statuses/upload_url_text statuses/upload_url_text}
  566. *
  567. * @param string $status 要发布的微博文本内容,内容不超过140个汉字。
  568. * @param string $url 图片的URL地址,必须以http开头。
  569. * @return array
  570. */
  571. function upload_url_text($status, $url) {
  572. $params = array();
  573. $params['status'] = $status;
  574. $params['url'] = $url;
  575. return $this->oauth->post('statuses/upload', $params, true);
  576. }
  577. /**
  578. * 获取表情列表
  579. *
  580. * 返回新浪微博官方所有表情、魔法表情的相关信息。包括短语、表情类型、表情分类,是否热门等。
  581. * <br />对应API:{@link http://open.weibo.com/wiki/2/emotions emotions}
  582. *
  583. * @access public
  584. * @param string $type 表情类别。"face":普通表情,"ani":魔法表情,"cartoon":动漫表情。默认为"face"。可选。
  585. * @param string $language 语言类别,"cnname"简体,"twname"繁体。默认为"cnname"。可选
  586. * @return array
  587. */
  588. function emotions($type = "face", $language = "cnname") {
  589. $params = array();
  590. $params['type'] = $type;
  591. $params['language'] = $language;
  592. return $this->oauth->get('emotions', $params);
  593. }
  594. /**
  595. * 根据微博ID返回某条微博的评论列表
  596. *
  597. * 对应API:{@link http://open.weibo.com/wiki/2/comments/show comments/show}
  598. *
  599. * @param int $sid 需要查询的微博ID。
  600. * @param int $page 返回结果的页码,默认为1。
  601. * @param int $count 单页返回的记录条数,默认为50。
  602. * @param int $since_id 若指定此参数,则返回ID比since_id大的评论(即比since_id时间晚的评论),默认为0。
  603. * @param int $max_id 若指定此参数,则返回ID小于或等于max_id的评论,默认为0。
  604. * @param int $filter_by_author 作者筛选类型,0:全部、1:我关注的人、2:陌生人,默认为0。
  605. * @return array
  606. */
  607. function get_comments_by_sid($sid, $page = 1, $count = 50, $since_id = 0, $max_id = 0, $filter_by_author = 0) {
  608. $params = array();
  609. $this->id_format($sid);
  610. $params['id'] = $sid;
  611. if ($since_id) {
  612. $this->id_format($since_id);
  613. $params['since_id'] = $since_id;
  614. }
  615. if ($max_id) {
  616. $this->id_format($max_id);
  617. $params['max_id'] = $max_id;
  618. }
  619. $params['count'] = $count;
  620. $params['page'] = $page;
  621. $params['filter_by_author'] = $filter_by_author;
  622. return $this->oauth->get('comments/show', $params);
  623. }
  624. /**
  625. * 获取当前登录用户所发出的评论列表
  626. *
  627. * 对应API:{@link http://open.weibo.com/wiki/2/comments/by_me comments/by_me}
  628. *
  629. * @param int $since_id 若指定此参数,则返回ID比since_id大的评论(即比since_id时间晚的评论),默认为0。
  630. * @param int $max_id 若指定此参数,则返回ID小于或等于max_id的评论,默认为0。
  631. * @param int $count 单页返回的记录条数,默认为50。
  632. * @param int $page 返回结果的页码,默认为1。
  633. * @param int $filter_by_source 来源筛选类型,0:全部、1:来自微博的评论、2:来自微群的评论,默认为0。
  634. * @return array
  635. */
  636. function comments_by_me($page = 1, $count = 50, $since_id = 0, $max_id = 0, $filter_by_source = 0) {
  637. $params = array();
  638. if ($since_id) {
  639. $this->id_format($since_id);
  640. $params['since_id'] = $since_id;
  641. }
  642. if ($max_id) {
  643. $this->id_format($max_id);
  644. $params['max_id'] = $max_id;
  645. }
  646. $params['count'] = $count;
  647. $params['page'] = $page;
  648. $params['filter_by_source'] = $filter_by_source;
  649. return $this->oauth->get('comments/by_me', $params);
  650. }
  651. /**
  652. * 获取当前登录用户所接收到的评论列表
  653. *
  654. * 对应API:{@link http://open.weibo.com/wiki/2/comments/to_me comments/to_me}
  655. *
  656. * @param int $since_id 若指定此参数,则返回ID比since_id大的评论(即比since_id时间晚的评论),默认为0。
  657. * @param int $max_id 若指定此参数,则返回ID小于或等于max_id的评论,默认为0。
  658. * @param int $count 单页返回的记录条数,默认为50。
  659. * @param int $page 返回结果的页码,默认为1。
  660. * @param int $filter_by_author 作者筛选类型,0:全部、1:我关注的人、2:陌生人,默认为0。
  661. * @param int $filter_by_source 来源筛选类型,0:全部、1:来自微博的评论、2:来自微群的评论,默认为0。
  662. * @return array
  663. */
  664. function comments_to_me($page = 1, $count = 50, $since_id = 0, $max_id = 0, $filter_by_author = 0, $filter_by_source = 0) {
  665. $params = array();
  666. if ($since_id) {
  667. $this->id_format($since_id);
  668. $params['since_id'] = $since_id;
  669. }
  670. if ($max_id) {
  671. $this->id_format($max_id);
  672. $params['max_id'] = $max_id;
  673. }
  674. $params['count'] = $count;
  675. $params['page'] = $page;
  676. $params['filter_by_author'] = $filter_by_author;
  677. $params['filter_by_source'] = $filter_by_source;
  678. return $this->oauth->get('comments/to_me', $params);
  679. }
  680. /**
  681. * 最新评论(按时间)
  682. *
  683. * 返回最新n条发送及收到的评论。
  684. * <br />对应API:{@link http://open.weibo.com/wiki/2/comments/timeline comments/timeline}
  685. *
  686. * @access public
  687. * @param int $page 页码
  688. * @param int $count 每次返回的最大记录数,最多返回200条,默认50。
  689. * @param int $since_id 若指定此参数,则只返回ID比since_id大的评论(比since_id发表时间晚)。可选。
  690. * @param int $max_id 若指定此参数,则返回ID小于或等于max_id的评论。可选。
  691. * @return array
  692. */
  693. function comments_timeline($page = 1, $count = 50, $since_id = 0, $max_id = 0) {
  694. $params = array();
  695. if ($since_id) {
  696. $this->id_format($since_id);
  697. $params['since_id'] = $since_id;
  698. }
  699. if ($max_id) {
  700. $this->id_format($max_id);
  701. $params['max_id'] = $max_id;
  702. }
  703. return $this->request_with_pager('comments/timeline', $page, $count, $params);
  704. }
  705. /**
  706. * 获取最新的提到当前登录用户的评论,即@我的评论
  707. *
  708. * 对应API:{@link http://open.weibo.com/wiki/2/comments/mentions comments/mentions}
  709. *
  710. * @param int $since_id 若指定此参数,则返回ID比since_id大的评论(即比since_id时间晚的评论),默认为0。
  711. * @param int $max_id 若指定此参数,则返回ID小于或等于max_id的评论,默认为0。
  712. * @param int $count 单页返回的记录条数,默认为50。
  713. * @param int $page 返回结果的页码,默认为1。
  714. * @param int $filter_by_author 作者筛选类型,0:全部、1:我关注的人、2:陌生人,默认为0。
  715. * @param int $filter_by_source 来源筛选类型,0:全部、1:来自微博的评论、2:来自微群的评论,默认为0。
  716. * @return array
  717. */
  718. function comments_mentions($page = 1, $count = 50, $since_id = 0, $max_id = 0, $filter_by_author = 0, $filter_by_source = 0) {
  719. $params = array();
  720. $params['since_id'] = $since_id;
  721. $params['max_id'] = $max_id;
  722. $params['count'] = $count;
  723. $params['page'] = $page;
  724. $params['filter_by_author'] = $filter_by_author;
  725. $params['filter_by_source'] = $filter_by_source;
  726. return $this->oauth->get('comments/mentions', $params);
  727. }
  728. /**
  729. * 根据评论ID批量返回评论信息
  730. *
  731. * 对应API:{@link http://open.weibo.com/wiki/2/comments/show_batch comments/show_batch}
  732. *
  733. * @param string $cids 需要查询的批量评论ID,用半角逗号分隔,最大50
  734. * @return array
  735. */
  736. function comments_show_batch($cids) {
  737. $params = array();
  738. if (is_array($cids) && !empty($cids)) {
  739. foreach ($cids as $k => $v) {
  740. $this->id_format($cids[$k]);
  741. }
  742. $params['cids'] = join(',', $cids);
  743. } else {
  744. $params['cids'] = $cids;
  745. }
  746. return $this->oauth->get('comments/show_batch', $params);
  747. }
  748. /**
  749. * 对一条微博进行评论
  750. *
  751. * 对应API:{@link http://open.weibo.com/wiki/2/comments/create comments/create}
  752. *
  753. * @param string $comment 评论内容,内容不超过140个汉字。
  754. * @param int $id 需要评论的微博ID。
  755. * @param int $comment_ori 当评论转发微博时,是否评论给原微博,0:否、1:是,默认为0。
  756. * @return array
  757. */
  758. function send_comment($id, $comment, $comment_ori = 0) {
  759. $params = array();
  760. $params['comment'] = $comment;
  761. $this->id_format($id);
  762. $params['id'] = $id;
  763. $params['comment_ori'] = $comment_ori;
  764. return $this->oauth->post('comments/create', $params);
  765. }
  766. /**
  767. * 删除当前用户的微博评论信息。
  768. *
  769. * 注意:只能删除自己发布的评论,发部微博的用户不可以删除其他人的评论。
  770. * <br />对应API:{@link http://open.weibo.com/wiki/2/statuses/comment_destroy statuses/comment_destroy}
  771. *
  772. * @access public
  773. * @param int $cid 要删除的评论id
  774. * @return array
  775. */
  776. function comment_destroy($cid) {
  777. $params = array();
  778. $params['cid'] = $cid;
  779. return $this->oauth->post('comments/destroy', $params);
  780. }
  781. /**
  782. * 根据评论ID批量删除评论
  783. *
  784. * 注意:只能删除自己发布的评论,发部微博的用户不可以删除其他人的评论。
  785. * <br />对应API:{@link http://open.weibo.com/wiki/2/comments/destroy_batch comments/destroy_batch}
  786. *
  787. * @access public
  788. * @param string $ids 需要删除的评论ID,用半角逗号隔开,最多20个。
  789. * @return array
  790. */
  791. function comment_destroy_batch($ids) {
  792. $params = array();
  793. if (is_array($ids) && !empty($ids)) {
  794. foreach ($ids as $k => $v) {
  795. $this->id_format($ids[$k]);
  796. }
  797. $params['cids'] = join(',', $ids);
  798. } else {
  799. $params['cids'] = $ids;
  800. }
  801. return $this->oauth->post('comments/destroy_batch', $params);
  802. }
  803. /**
  804. * 回复一条评论
  805. *
  806. * 为防止重复,发布的信息与最后一条评论/回复信息一样话,将会被忽略。
  807. * <br />对应API:{@link http://open.weibo.com/wiki/2/comments/reply comments/reply}
  808. *
  809. * @access public
  810. * @param int $sid 微博id
  811. * @param string $text 评论内容。
  812. * @param int $cid 评论id
  813. * @param int $without_mention 1:回复中不自动加入“回复@用户名”,0:回复中自动加入“回复@用户名”.默认为0.
  814. * @param int $comment_ori 当评论转发微博时,是否评论给原微博,0:否、1:是,默认为0。
  815. * @return array
  816. */
  817. function reply($sid, $text, $cid, $without_mention = 0, $comment_ori = 0) {
  818. $this->id_format($sid);
  819. $this->id_format($cid);
  820. $params = array();
  821. $params['id'] = $sid;
  822. $params['comment'] = $text;
  823. $params['cid'] = $cid;
  824. $params['without_mention'] = $without_mention;
  825. $params['comment_ori'] = $comment_ori;
  826. return $this->oauth->post('comments/reply', $params);
  827. }
  828. /**
  829. * 根据用户UID或昵称获取用户资料
  830. *
  831. * 按用户UID或昵称返回用户资料,同时也将返回用户的最新发布的微博。
  832. * <br />对应API:{@link http://open.weibo.com/wiki/2/users/show users/show}
  833. *
  834. * @access public
  835. * @param int $uid 用户UID。
  836. * @return array
  837. */
  838. function show_user_by_id($uid) {
  839. $params = array();
  840. if ($uid !== NULL) {
  841. $this->id_format($uid);
  842. $params['uid'] = $uid;
  843. }
  844. return $this->oauth->get('users/show', $params);
  845. }
  846. /**
  847. * 根据用户UID或昵称获取用户资料
  848. *
  849. * 按用户UID或昵称返回用户资料,同时也将返回用户的最新发布的微博。
  850. * <br />对应API:{@link http://open.weibo.com/wiki/2/users/show users/show}
  851. *
  852. * @access public
  853. * @param string $screen_name 用户UID。
  854. * @return array
  855. */
  856. function show_user_by_name($screen_name) {
  857. $params = array();
  858. $params['screen_name'] = $screen_name;
  859. return $this->oauth->get('users/show', $params);
  860. }
  861. /**
  862. * 通过个性化域名获取用户资料以及用户最新的一条微博
  863. *
  864. * 对应API:{@link http://open.weibo.com/wiki/2/users/domain_show users/domain_show}
  865. *
  866. * @access public
  867. * @param mixed $domain 用户个性域名。例如:lazypeople,而不是http://weibo.com/lazypeople
  868. * @return array
  869. */
  870. function domain_show($domain) {
  871. $params = array();
  872. $params['domain'] = $domain;
  873. return $this->oauth->get('users/domain_show', $params);
  874. }
  875. /**
  876. * 批量获取用户信息按uids
  877. *
  878. * 对应API:{@link http://open.weibo.com/wiki/2/users/show_batch users/show_batch}
  879. *
  880. * @param string $uids 需要查询的用户ID,用半角逗号分隔,一次最多20个。
  881. * @return array
  882. */
  883. function users_show_batch_by_id($uids) {
  884. $params = array();
  885. if (is_array($uids) && !empty($uids)) {
  886. foreach ($uids as $k => $v) {
  887. $this->id_format($uids[$k]);
  888. }
  889. $params['uids'] = join(',', $uids);
  890. } else {
  891. $params['uids'] = $uids;
  892. }
  893. return $this->oauth->get('users/show_batch', $params);
  894. }
  895. /**
  896. * 批量获取用户信息按screen_name
  897. *
  898. * 对应API:{@link http://open.weibo.com/wiki/2/users/show_batch users/show_batch}
  899. *
  900. * @param string $screen_name 需要查询的用户昵称,用半角逗号分隔,一次最多20个。
  901. * @return array
  902. */
  903. function users_show_batch_by_name($screen_name) {
  904. $params = array();
  905. if (is_array($screen_name) && !empty($screen_name)) {
  906. $params['screen_name'] = join(',', $screen_name);
  907. } else {
  908. $params['screen_name'] = $screen_name;
  909. }
  910. return $this->oauth->get('users/show_batch', $params);
  911. }
  912. /**
  913. * 获取用户的关注列表
  914. *
  915. * 如果没有提供cursor参数,将只返回最前面的5000个关注id
  916. * <br />对应API:{@link http://open.weibo.com/wiki/2/friendships/friends friendships/friends}
  917. *
  918. * @access public
  919. * @param int $cursor 返回结果的游标,下一页用返回值里的next_cursor,上一页用previous_cursor,默认为0。
  920. * @param int $count 单页返回的记录条数,默认为50,最大不超过200。
  921. * @param int $uid 要获取的用户的ID。
  922. * @return array
  923. */
  924. function friends_by_id($uid, $cursor = 0, $count = 50) {
  925. $params = array();
  926. $params['cursor'] = $cursor;
  927. $params['count'] = $count;
  928. $params['uid'] = $uid;
  929. return $this->oauth->get('friendships/friends', $params);
  930. }
  931. /**
  932. * 获取用户的关注列表
  933. *
  934. * 如果没有提供cursor参数,将只返回最前面的5000个关注id
  935. * <br />对应API:{@link http://open.weibo.com/wiki/2/friendships/friends friendships/friends}
  936. *
  937. * @access public
  938. * @param int $cursor 返回结果的游标,下一页用返回值里的next_cursor,上一页用previous_cursor,默认为0。
  939. * @param int $count 单页返回的记录条数,默认为50,最大不超过200。
  940. * @param string $screen_name 要获取的用户的 screen_name
  941. * @return array
  942. */
  943. function friends_by_name($screen_name, $cursor = 0, $count = 50) {
  944. $params = array();
  945. $params['cursor'] = $cursor;
  946. $params['count'] = $count;
  947. $params['screen_name'] = $screen_name;
  948. return $this->oauth->get('friendships/friends', $params);
  949. }
  950. /**
  951. * 获取两个用户之间的共同关注人列表
  952. *
  953. * 对应API:{@link http://open.weibo.com/wiki/2/friendships/friends/in_common friendships/friends/in_common}
  954. *
  955. * @param int $uid 需要获取共同关注关系的用户UID
  956. * @param int $suid 需要获取共同关注关系的用户UID,默认为当前登录用户。
  957. * @param int $count 单页返回的记录条数,默认为50。
  958. * @param int $page 返回结果的页码,默认为1。
  959. * @return array
  960. */
  961. function friends_in_common($uid, $suid = NULL, $page = 1, $count = 50) {
  962. $params = array();
  963. $params['uid'] = $uid;
  964. $params['suid'] = $suid;
  965. $params['count'] = $count;
  966. $params['page'] = $page;
  967. return $this->oauth->get('friendships/friends/in_common', $params);
  968. }
  969. /**
  970. * 获取用户的双向关注列表,即互粉列表
  971. *
  972. * 对应API:{@link http://open.weibo.com/wiki/2/friendships/friends/bilateral friendships/friends/bilateral}
  973. *
  974. * @param int $uid 需要获取双向关注列表的用户UID。
  975. * @param int $count 单页返回的记录条数,默认为50。
  976. * @param int $page 返回结果的页码,默认为1。
  977. * @param int $sort 排序类型,0:按关注时间最近排序,默认为0。
  978. * @return array
  979. * */
  980. function bilateral($uid, $page = 1, $count = 50, $sort = 0) {
  981. $params = array();
  982. $params['uid'] = $uid;
  983. $params['count'] = $count;
  984. $params['page'] = $page;
  985. $params['sort'] = $sort;
  986. return $this->oauth->get('friendships/friends/bilateral', $params);
  987. }
  988. /**
  989. * 获取用户的双向关注uid列表
  990. *
  991. * 对应API:{@link http://open.weibo.com/wiki/2/friendships/friends/bilateral/ids friendships/friends/bilateral/ids}
  992. *
  993. * @param int $uid 需要获取双向关注列表的用户UID。
  994. * @param int $count 单页返回的记录条数,默认为50。
  995. * @param int $page 返回结果的页码,默认为1。
  996. * @param int $sort 排序类型,0:按关注时间最近排序,默认为0。
  997. * @return array
  998. * */
  999. function bilateral_ids($uid, $page = 1, $count = 50, $sort = 0) {
  1000. $params = array();
  1001. $params['uid'] = $uid;
  1002. $params['count'] = $count;
  1003. $params['page'] = $page;
  1004. $params['sort'] = $sort;
  1005. return $this->oauth->get('friendships/friends/bilateral/ids', $params);
  1006. }
  1007. /**
  1008. * 获取用户的关注列表uid
  1009. *
  1010. * 如果没有提供cursor参数,将只返回最前面的5000个关注id
  1011. * <br />对应API:{@link http://open.weibo.com/wiki/2/friendships/friends/ids friendships/friends/ids}
  1012. *
  1013. * @access public
  1014. * @param int $cursor 返回结果的游标,下一页用返回值里的next_cursor,上一页用previous_cursor,默认为0。
  1015. * @param int $count 每次返回的最大记录数(即页面大小),不大于5000, 默认返回500。
  1016. * @param int $uid 要获取的用户 UID,默认为当前用户
  1017. * @return array
  1018. */
  1019. function friends_ids_by_id($uid, $cursor = 0, $count = 500) {
  1020. $params = array();
  1021. $this->id_format($uid);
  1022. $params['uid'] = $uid;
  1023. $params['cursor'] = $cursor;
  1024. $params['count'] = $count;
  1025. return $this->oauth->get('friendships/friends/ids', $params);
  1026. }
  1027. /**
  1028. * 获取用户的关注列表uid
  1029. *
  1030. * 如果没有提供cursor参数,将只返回最前面的5000个关注id
  1031. * <br />对应API:{@link http://open.weibo.com/wiki/2/friendships/friends/ids friendships/friends/ids}
  1032. *
  1033. * @access public
  1034. * @param int $cursor 返回结果的游标,下一页用返回值里的next_cursor,上一页用previous_cursor,默认为0。
  1035. * @param int $count 每次返回的最大记录数(即页面大小),不大于5000, 默认返回500。
  1036. * @param string $screen_name 要获取的用户的 screen_name,默认为当前用户
  1037. * @return array
  1038. */
  1039. function friends_ids_by_name($screen_name, $cursor = 0, $count = 500) {
  1040. $params = array();
  1041. $params['cursor'] = $cursor;
  1042. $params['count'] = $count;
  1043. $params['screen_name'] = $screen_name;
  1044. return $this->oauth->get('friendships/friends/ids', $params);
  1045. }
  1046. /**
  1047. * 批量获取当前登录用户的关注人的备注信息
  1048. *
  1049. * 对应API:{@link http://open.weibo.com/wiki/2/friendships/friends/remark_batch friendships/friends/remark_batch}
  1050. *
  1051. * @param string $uids 需要获取备注的用户UID,用半角逗号分隔,最多不超过50个。
  1052. * @return array
  1053. * */
  1054. function friends_remark_batch($uids) {
  1055. $params = array();
  1056. if (is_array($uids) && !empty($uids)) {
  1057. foreach ($uids as $k => $v) {
  1058. $this->id_format($uids[$k]);
  1059. }
  1060. $params['uids'] = join(',', $uids);
  1061. } else {
  1062. $params['uids'] = $uids;
  1063. }
  1064. return $this->oauth->get('friendships/friends/remark_batch', $params);
  1065. }
  1066. /**
  1067. * 获取用户的粉丝列表
  1068. *
  1069. * 对应API:{@link http://open.weibo.com/wiki/2/friendships/followers friendships/followers}
  1070. *
  1071. * @param int $uid 需要查询的用户UID
  1072. * @param int $count 单页返回的记录条数,默认为50,最大不超过200。
  1073. * @param int $cursor false 返回结果的游标,下一页用返回值里的next_cursor,上一页用previous_cursor,默认为0。
  1074. * @return array
  1075. * */
  1076. function followers_by_id($uid, $cursor = 0, $count = 50) {
  1077. $params = array();
  1078. $this->id_format($uid);
  1079. $params['uid'] = $uid;
  1080. $params['count'] = $count;
  1081. $params['cursor'] = $cursor;
  1082. return $this->oauth->get('friendships/followers', $params);
  1083. }
  1084. /**
  1085. * 获取用户的粉丝列表
  1086. *
  1087. * 对应API:{@link http://open.weibo.com/wiki/2/friendships/followers friendships/followers}
  1088. *
  1089. * @param string $screen_name 需要查询的用户的昵称
  1090. * @param int $count 单页返回的记录条数,默认为50,最大不超过200。
  1091. * @param int $cursor false 返回结果的游标,下一页用返回值里的next_cursor,上一页用previous_cursor,默认为0。
  1092. * @return array
  1093. * */
  1094. function followers_by_name($screen_name, $cursor = 0, $count = 50) {
  1095. $params = array();
  1096. $params['screen_name'] = $screen_name;
  1097. $params['count'] = $count;
  1098. $params['cursor'] = $cursor;
  1099. return $this->oauth->get('friendships/followers', $params);
  1100. }
  1101. /**
  1102. * 获取用户的粉丝列表uid
  1103. *
  1104. * 对应API:{@link http://open.weibo.com/wiki/2/friendships/followers friendships/followers}
  1105. *
  1106. * @param int $uid 需要查询的用户UID
  1107. * @param int $count 单页返回的记录条数,默认为50,最大不超过200。
  1108. * @param int $cursor 返回结果的游标,下一页用返回值里的next_cursor,上一页用previous_cursor,默认为0。
  1109. * @return array
  1110. * */
  1111. function followers_ids_by_id($uid, $cursor = 0, $count = 50) {
  1112. $params = array();
  1113. $this->id_format($uid);
  1114. $params['uid'] = $uid;
  1115. $params['count'] = $count;
  1116. $params['cursor'] = $cursor;
  1117. return $this->oauth->get('friendships/followers/ids', $params);
  1118. }
  1119. /**
  1120. * 获取用户的粉丝列表uid
  1121. *
  1122. * 对应API:{@link http://open.weibo.com/wiki/2/friendships/followers friendships/followers}
  1123. *
  1124. * @param string $screen_name 需要查询的用户screen_name
  1125. * @param int $count 单页返回的记录条数,默认为50,最大不超过200。
  1126. * @param int $cursor 返回结果的游标,下一页用返回值里的next_cursor,上一页用previous_cursor,默认为0。
  1127. * @return array
  1128. * */
  1129. function followers_ids_by_name($screen_name, $cursor = 0, $count = 50) {
  1130. $params = array();
  1131. $params['screen_name'] = $screen_name;
  1132. $params['count'] = $count;
  1133. $params['cursor'] = $cursor;
  1134. return $this->oauth->get('friendships/followers/ids', $params);
  1135. }
  1136. /**
  1137. * 获取优质粉丝
  1138. *
  1139. * 对应API:{@link http://open.weibo.com/wiki/2/friendships/followers/active friendships/followers/active}
  1140. *
  1141. * @param int $uid 需要查询的用户UID。
  1142. * @param int $count 返回的记录条数,默认为20,最大不超过200。
  1143. * @return array
  1144. * */
  1145. function followers_active($uid, $count = 20) {
  1146. $param = array();
  1147. $this->id_format($uid);
  1148. $param['uid'] = $uid;
  1149. $param['count'] = $count;
  1150. return $this->oauth->get('friendships/followers/active', $param);
  1151. }
  1152. /**
  1153. * 获取当前登录用户的关注人中又关注了指定用户的用户列表
  1154. *
  1155. * 对应API:{@link http://open.weibo.com/wiki/2/friendships/friends_chain/followers friendships/friends_chain/followers}
  1156. *
  1157. * @param int $uid 指定的关注目标用户UID。
  1158. * @param int $count 单页返回的记录条数,默认为50。
  1159. * @param int $page 返回结果的页码,默认为1。
  1160. * @return array
  1161. * */
  1162. function friends_chain_followers($uid, $page = 1, $count = 50) {
  1163. $params = array();
  1164. $this->id_format($uid);
  1165. $params['uid'] = $uid;
  1166. $params['count'] = $count;
  1167. $params['page'] = $page;
  1168. return $this->oauth->get('friendships/friends_chain/followers', $params);
  1169. }
  1170. /**
  1171. * 返回两个用户关系的详细情况
  1172. *
  1173. * 如果源用户或目的用户不存在,将返回http的400错误
  1174. * <br />对应API:{@link http://open.weibo.com/wiki/2/friendships/show friendships/show}
  1175. *
  1176. * @access public
  1177. * @param mixed $target_id 目标用户UID
  1178. * @param mixed $source_id 源用户UID,可选,默认为当前的用户
  1179. * @return array
  1180. */
  1181. function is_followed_by_id($target_id, $source_id = NULL) {
  1182. $params = array();
  1183. $this->id_format($target_id);
  1184. $params['target_id'] = $target_id;
  1185. if ($source_id != NULL) {
  1186. $this->id_format($source_id);
  1187. $params['source_id'] = $source_id;
  1188. }
  1189. return $this->oauth->get('friendships/show', $params);
  1190. }
  1191. /**
  1192. * 返回两个用户关系的详细情况
  1193. *
  1194. * 如果源用户或目的用户不存在,将返回http的400错误
  1195. * <br />对应API:{@link http://open.weibo.com/wiki/2/friendships/show friendships/show}
  1196. *
  1197. * @access public
  1198. * @param mixed $target_name 目标用户的微博昵称
  1199. * @param mixed $source_name 源用户的微博昵称,可选,默认为当前的用户
  1200. * @return array
  1201. */
  1202. function is_followed_by_name($target_name, $source_name = NULL) {
  1203. $params = array();
  1204. $params['target_screen_name'] = $target_name;
  1205. if ($source_name != NULL) {
  1206. $params['source_screen_name'] = $source_name;
  1207. }
  1208. return $this->oauth->get('friendships/show', $params);
  1209. }
  1210. /**
  1211. * 关注一个用户。
  1212. *
  1213. * 成功则返回关注人的资料,目前最多关注2000人,失败则返回一条字符串的说明。如果已经关注了此人,则返回http 403的状态。关注不存在的ID将返回400。
  1214. * <br />对应API:{@link http://open.weibo.com/wiki/2/friendships/create friendships/create}
  1215. *
  1216. * @access public
  1217. * @param int $uid 要关注的用户UID
  1218. * @return array
  1219. */
  1220. function follow_by_id($uid) {
  1221. $params = array();
  1222. $this->id_format($uid);
  1223. $params['uid'] = $uid;
  1224. return $this->oauth->post('friendships/create', $params);
  1225. }
  1226. /**
  1227. * 关注一个用户。
  1228. *
  1229. * 成功则返回关注人的资料,目前的最多关注2000人,失败则返回一条字符串的说明。如果已经关注了此人,则返回http 403的状态。关注不存在的ID将返回400。
  1230. * <br />对应API:{@link http://open.weibo.com/wiki/2/friendships/create friendships/create}
  1231. *
  1232. * @access public
  1233. * @param string $screen_name 要关注的用户昵称
  1234. * @return array
  1235. */
  1236. function follow_by_name($screen_name) {
  1237. $params = array();
  1238. $params['screen_name'] = $screen_name;
  1239. return $this->oauth->post('friendships/create', $params);
  1240. }
  1241. /**
  1242. * 根据用户UID批量关注用户
  1243. *
  1244. * 对应API:{@link http://open.weibo.com/wiki/2/friendships/create_batch friendships/create_batch}
  1245. *
  1246. * @param string $uids 要关注的用户UID,用半角逗号分隔,最多不超过20个。
  1247. * @return array
  1248. */
  1249. function follow_create_batch($uids) {
  1250. $params = array();
  1251. if (is_array($uids) && !empty($uids)) {
  1252. foreach ($uids as $k => $v) {
  1253. $this->id_format($uids[$k]);
  1254. }
  1255. $params['uids'] = join(',', $uids);
  1256. } else {
  1257. $params['uids'] = $uids;
  1258. }
  1259. return $this->oauth->post('friendships/create_batch', $params);
  1260. }
  1261. /**
  1262. * 取消关注某用户
  1263. *
  1264. * 取消关注某用户。成功则返回被取消关注人的资料,失败则返回一条字符串的说明。
  1265. * <br />对应API:{@link http://open.weibo.com/wiki/2/friendships/destroy friendships/destroy}
  1266. *
  1267. * @access public
  1268. * @param int $uid 要取消关注的用户UID
  1269. * @return array
  1270. */
  1271. function unfollow_by_id($uid) {
  1272. $params = array();
  1273. $this->id_format($uid);
  1274. $params['uid'] = $uid;
  1275. return $this->oauth->post('friendships/destroy', $params);
  1276. }
  1277. /**
  1278. * 取消关注某用户
  1279. *
  1280. * 取消关注某用户。成功则返回被取消关注人的资料,失败则返回一条字符串的说明。
  1281. * <br />对应API:{@link http://open.weibo.com/wiki/2/friendships/destroy friendships/destroy}
  1282. *
  1283. * @access public
  1284. * @param string $screen_name 要取消关注的用户昵称
  1285. * @return array
  1286. */
  1287. function unfollow_by_name($screen_name) {
  1288. $params = array();
  1289. $params['screen_name'] = $screen_name;
  1290. return $this->oauth->post('friendships/destroy', $params);
  1291. }
  1292. /**
  1293. * 更新当前登录用户所关注的某个好友的备注信息
  1294. *
  1295. * 只能修改当前登录用户所关注的用户的备注信息。否则将给出400错误。
  1296. * <br />对应API:{@link http://open.weibo.com/wiki/2/friendships/remark/update friendships/remark/update}
  1297. *
  1298. * @access public
  1299. * @param int $uid 需要修改备注信息的用户ID。
  1300. * @param string $remark 备注信息。
  1301. * @return array
  1302. */
  1303. function update_remark($uid, $remark) {
  1304. $params = array();
  1305. $this->id_format($uid);
  1306. $params['uid'] = $uid;
  1307. $params['remark'] = $remark;
  1308. return $this->oauth->post('friendships/remark/update', $params);
  1309. }
  1310. /**
  1311. * 获取当前用户最新私信列表
  1312. *
  1313. * 返回用户的最新n条私信,并包含发送者和接受者的详细资料。
  1314. * <br />对应API:{@link http://open.weibo.com/wiki/2/direct_messages direct_messages}
  1315. *
  1316. * @access public
  1317. * @param int $page 页码
  1318. * @param int $count 每次返回的最大记录数,最多返回200条,默认50。
  1319. * @param int64 $since_id 返回ID比数值since_id大(比since_id时间晚的)的私信。可选。
  1320. * @param int64 $max_id 返回ID不大于max_id(时间不晚于max_id)的私信。可选。
  1321. * @return array
  1322. */
  1323. function list_dm($page = 1, $count = 50, $since_id = 0, $max_id = 0) {
  1324. $params = array();
  1325. if ($since_id) {
  1326. $this->id_format($since_id);
  1327. $params['since_id'] = $since_id;
  1328. }
  1329. if ($max_id) {
  1330. $this->id_format($max_id);
  1331. $params['max_id'] = $max_id;
  1332. }
  1333. return $this->request_with_pager('direct_messages', $page, $count, $params);
  1334. }
  1335. /**
  1336. * 获取当前用户发送的最新私信列表
  1337. *
  1338. * 返回登录用户已发送最新50条私信。包括发送者和接受者的详细资料。
  1339. * <br />对应API:{@link http://open.weibo.com/wiki/2/direct_messages/sent direct_messages/sent}
  1340. *
  1341. * @access public
  1342. * @param int $page 页码
  1343. * @param int $count 每次返回的最大记录数,最多返回200条,默认50。
  1344. * @param int64 $since_id 返回ID比数值since_id大(比since_id时间晚的)的私信。可选。
  1345. * @param int64 $max_id 返回ID不大于max_id(时间不晚于max_id)的私信。可选。
  1346. * @return array
  1347. */
  1348. function list_dm_sent($page = 1, $count = 50, $since_id = 0, $max_id = 0) {
  1349. $params = array();
  1350. if ($since_id) {
  1351. $this->id_format($since_id);
  1352. $params['since_id'] = $since_id;
  1353. }
  1354. if ($max_id) {
  1355. $this->id_format($max_id);
  1356. $params['max_id'] = $max_id;
  1357. }
  1358. return $this->request_with_pager('direct_messages/sent', $page, $count, $params);
  1359. }
  1360. /**
  1361. * 获取与当前登录用户有私信往来的用户列表,与该用户往来的最新私信
  1362. *
  1363. * 对应API:{@link http://open.weibo.com/wiki/2/direct_messages/user_list direct_messages/user_list}
  1364. *
  1365. * @param int $count 单页返回的记录条数,默认为20。
  1366. * @param int $cursor 返回结果的游标,下一页用返回值里的next_cursor,上一页用previous_cursor,默认为0。
  1367. * @return array
  1368. */
  1369. function dm_user_list($count = 20, $cursor = 0) {
  1370. $params = array();
  1371. $params['count'] = $count;
  1372. $params['cursor'] = $cursor;
  1373. return $this->oauth->get('direct_messages/user_list', $params);
  1374. }
  1375. /**
  1376. * 获取与指定用户的往来私信列表
  1377. *
  1378. * 对应API:{@link http://open.weibo.com/wiki/2/direct_messages/conversation direct_messages/conversation}
  1379. *
  1380. * @param int $uid 需要查询的用户的UID。
  1381. * @param int $since_id 若指定此参数,则返回ID比since_id大的私信(即比since_id时间晚的私信),默认为0。
  1382. * @param int $max_id 若指定此参数,则返回ID小于或等于max_id的私信,默认为0。
  1383. * @param int $count 单页返回的记录条数,默认为50。
  1384. * @param int $page 返回结果的页码,默认为1。
  1385. * @return array
  1386. */
  1387. function dm_conversation($uid, $page = 1, $count = 50, $since_id = 0, $max_id = 0) {
  1388. $params = array();
  1389. $this->id_format($uid);
  1390. $params['uid'] = $uid;
  1391. if ($since_id) {
  1392. $this->id_format($since_id);
  1393. $params['since_id'] = $since_id;
  1394. }
  1395. if ($max_id) {
  1396. $this->id_format($max_id);
  1397. $params['max_id'] = $max_id;
  1398. }
  1399. $params['count'] = $count;
  1400. $params['page'] = $page;
  1401. return $this->oauth->get('direct_messages/conversation', $params);
  1402. }
  1403. /**
  1404. * 根据私信ID批量获取私信内容
  1405. *
  1406. * 对应API:{@link http://open.weibo.com/wiki/2/direct_messages/show_batch direct_messages/show_batch}
  1407. *
  1408. * @param string $dmids 需要查询的私信ID,用半角逗号分隔,一次最多50个
  1409. * @return array
  1410. */
  1411. function dm_show_batch($dmids) {
  1412. $params = array();
  1413. if (is_array($dmids) && !empty($dmids)) {
  1414. foreach ($dmids as $k => $v) {
  1415. $this->id_format($dmids[$k]);
  1416. }
  1417. $params['dmids'] = join(',', $dmids);
  1418. } else {
  1419. $params['dmids'] = $dmids;
  1420. }
  1421. return $this->oauth->get('direct_messages/show_batch', $params);
  1422. }
  1423. /**
  1424. * 发送私信
  1425. *
  1426. * 发送一条私信。成功将返回完整的发送消息。
  1427. * <br />对应API:{@link http://open.weibo.com/wiki/2/direct_messages/new direct_messages/new}
  1428. *
  1429. * @access public
  1430. * @param int $uid 用户UID
  1431. * @param string $text 要发生的消息内容,文本大小必须小于300个汉字。
  1432. * @param int $id 需要发送的微博ID。
  1433. * @return array
  1434. */
  1435. function send_dm_by_id($uid, $text, $id = NULL) {
  1436. $params = array();
  1437. $this->id_format($uid);
  1438. $params['text'] = $text;
  1439. $params['uid'] = $uid;
  1440. if ($id) {
  1441. $this->id_format($id);
  1442. $params['id'] = $id;
  1443. }
  1444. return $this->oauth->post('direct_messages/new', $params);
  1445. }
  1446. /**
  1447. * 发送私信
  1448. *
  1449. * 发送一条私信。成功将返回完整的发送消息。
  1450. * <br />对应API:{@link http://open.weibo.com/wiki/2/direct_messages/new direct_messages/new}
  1451. *
  1452. * @access public
  1453. * @param string $screen_name 用户昵称
  1454. * @param string $text 要发生的消息内容,文本大小必须小于300个汉字。
  1455. * @param int $id 需要发送的微博ID。
  1456. * @return array
  1457. */
  1458. function send_dm_by_name($screen_name, $text, $id = NULL) {
  1459. $params = array();
  1460. $params['text'] = $text;
  1461. $params['screen_name'] = $screen_name;
  1462. if ($id) {
  1463. $this->id_format($id);
  1464. $params['id'] = $id;
  1465. }
  1466. return $this->oauth->post('direct_messages/new', $params);
  1467. }
  1468. /**
  1469. * 删除一条私信
  1470. *
  1471. * 按ID删除私信。操作用户必须为私信的接收人。
  1472. * <br />对应API:{@link http://open.weibo.com/wiki/2/direct_messages/destroy direct_messages/destroy}
  1473. *
  1474. * @access public
  1475. * @param int $did 要删除的私信主键ID
  1476. * @return array
  1477. */
  1478. function delete_dm($did) {
  1479. $this->id_format($did);
  1480. $params = array();
  1481. $params['id'] = $did;
  1482. return $this->oauth->post('direct_messages/destroy', $params);
  1483. }
  1484. /**
  1485. * 批量删除私信
  1486. *
  1487. * 批量删除当前登录用户的私信。出现异常时,返回400错误。
  1488. * <br />对应API:{@link http://open.weibo.com/wiki/2/direct_messages/destroy_batch direct_messages/destroy_batch}
  1489. *
  1490. * @access public
  1491. * @param mixed $dids 欲删除的一组私信ID,用半角逗号隔开,或者由一组评论ID组成的数组。最多20个。例如:"4976494627, 4976262053"或array(4976494627,4976262053);
  1492. * @return array
  1493. */
  1494. function delete_dms($dids) {
  1495. $params = array();
  1496. if (is_array($dids) && !empty($dids)) {
  1497. foreach ($dids as $k => $v) {
  1498. $this->id_format($dids[$k]);
  1499. }
  1500. $params['ids'] = join(',', $dids);
  1501. } else {
  1502. $params['ids'] = $dids;
  1503. }
  1504. return $this->oauth->post('direct_messages/destroy_batch', $params);
  1505. }
  1506. /**
  1507. * 获取用户基本信息
  1508. *
  1509. * 对应API:{@link http://open.weibo.com/wiki/2/account/profile/basic account/profile/basic}
  1510. *
  1511. * @param int $uid 需要获取基本信息的用户UID,默认为当前登录用户。
  1512. * @return array
  1513. */
  1514. function account_profile_basic($uid = NULL) {
  1515. $params = array();
  1516. if ($uid) {
  1517. $this->id_format($uid);
  1518. $params['uid'] = $uid;
  1519. }
  1520. return $this->oauth->get('account/profile/basic', $params);
  1521. }
  1522. /**
  1523. * 获取用户的教育信息
  1524. *
  1525. * 对应API:{@link http://open.weibo.com/wiki/2/account/profile/education account/profile/education}
  1526. *
  1527. * @param int $uid 需要获取教育信息的用户UID,默认为当前登录用户。
  1528. * @return array
  1529. */
  1530. function account_education($uid = NULL) {
  1531. $params = array();
  1532. if ($uid) {
  1533. $this->id_format($uid);
  1534. $params['uid'] = $uid;
  1535. }
  1536. return $this->oauth->get('account/profile/education', $params);
  1537. }
  1538. /**
  1539. * 批量获取用户的教育信息
  1540. *
  1541. * 对应API:{@link http://open.weibo.com/wiki/2/account/profile/education_batch account/profile/education_batch}
  1542. *
  1543. * @param string $uids 需要获取教育信息的用户UID,用半角逗号分隔,最多不超过20。
  1544. * @return array
  1545. */
  1546. function account_education_batch($uids) {
  1547. $params = array();
  1548. if (is_array($uids) && !empty($uids)) {
  1549. foreach ($uids as $k => $v) {
  1550. $this->id_format($uids[$k]);
  1551. }
  1552. $params['uids'] = join(',', $uids);
  1553. } else {
  1554. $params['uids'] = $uids;
  1555. }
  1556. return $this->oauth->get('account/profile/education_batch', $params);
  1557. }
  1558. /**
  1559. * 获取用户的职业信息
  1560. *
  1561. * 对应API:{@link http://open.weibo.com/wiki/2/account/profile/career account/profile/career}
  1562. *
  1563. * @param int $uid 需要获取教育信息的用户UID,默认为当前登录用户。
  1564. * @return array
  1565. */
  1566. function account_career($uid = NULL) {
  1567. $params = array();
  1568. if ($uid) {
  1569. $this->id_format($uid);
  1570. $params['uid'] = $uid;
  1571. }
  1572. return $this->oauth->get('account/profile/career', $params);
  1573. }
  1574. /**
  1575. * 批量获取用户的职业信息
  1576. *
  1577. * 对应API:{@link http://open.weibo.com/wiki/2/account/profile/career_batch account/profile/career_batch}
  1578. *
  1579. * @param string $uids 需要获取教育信息的用户UID,用半角逗号分隔,最多不超过20。
  1580. * @return array
  1581. */
  1582. function account_career_batch($uids) {
  1583. $params = array();
  1584. if (is_array($uids) && !empty($uids)) {
  1585. foreach ($uids as $k => $v) {
  1586. $this->id_format($uids[$k]);
  1587. }
  1588. $params['uids'] = join(',', $uids);
  1589. } else {
  1590. $params['uids'] = $uids;
  1591. }
  1592. return $this->oauth->get('account/profile/career_batch', $params);
  1593. }
  1594. /**
  1595. * 获取隐私信息设置情况
  1596. *
  1597. * 对应API:{@link http://open.weibo.com/wiki/2/account/get_privacy account/get_privacy}
  1598. *
  1599. * @access public
  1600. * @return array
  1601. */
  1602. function get_privacy() {
  1603. return $this->oauth->get('account/get_privacy');
  1604. }
  1605. /**
  1606. * 获取所有的学校列表
  1607. *
  1608. * 对应API:{@link http://open.weibo.com/wiki/2/account/profile/school_list account/profile/school_list}
  1609. *
  1610. * @param array $query 搜索选项。格式:array('key0'=>'value0', 'key1'=>'value1', ....)。支持的key:
  1611. * - province int 省份范围,省份ID。
  1612. * - city int 城市范围,城市ID。
  1613. * - area int 区域范围,区ID。
  1614. * - type int 学校类型,1:大学、2:高中、3:中专技校、4:初中、5:小学,默认为1。
  1615. * - capital string 学校首字母,默认为A。
  1616. * - keyword string 学校名称关键字。
  1617. * - count int 返回的记录条数,默认为10。
  1618. * 参数keyword与capital二者必选其一,且只能选其一。按首字母capital查询时,必须提供province参数。
  1619. * @access public
  1620. * @return array
  1621. */
  1622. function school_list($query) {
  1623. $params = $query;
  1624. return $this->oauth->get('account/profile/school_list', $params);
  1625. }
  1626. /**
  1627. * 获取当前登录用户的API访问频率限制情况
  1628. *
  1629. * 对应API:{@link http://open.weibo.com/wiki/2/account/rate_limit_status account/rate_limit_status}
  1630. *
  1631. * @access public
  1632. * @return array
  1633. */
  1634. function rate_limit_status() {
  1635. return $this->oauth->get('account/rate_limit_status');
  1636. }
  1637. /**
  1638. * OAuth授权之后,获取授权用户的UID
  1639. *
  1640. * 对应API:{@link http://open.weibo.com/wiki/2/account/get_uid account/get_uid}
  1641. *
  1642. * @access public
  1643. * @return array
  1644. */
  1645. function get_uid() {
  1646. return $this->oauth->get('account/get_uid');
  1647. }
  1648. /**
  1649. * 更改用户资料
  1650. *
  1651. * 对应API:{@link http://open.weibo.com/wiki/2/account/profile/basic_update account/profile/basic_update}
  1652. *
  1653. * @access public
  1654. * @param array $profile 要修改的资料。格式:array('key1'=>'value1', 'key2'=>'value2', .....)。
  1655. * 支持修改的项:
  1656. * - screen_name string 用户昵称,不可为空。
  1657. * - gender i string 用户性别,m:男、f:女,不可为空。
  1658. * - real_name string 用户真实姓名。
  1659. * - real_name_visible int 真实姓名可见范围,0:自己可见、1:关注人可见、2:所有人可见。
  1660. * - province true int 省份代码ID,不可为空。
  1661. * - city true int 城市代码ID,不可为空。
  1662. * - birthday string 用户生日,格式:yyyy-mm-dd。
  1663. * - birthday_visible int 生日可见范围,0:保密、1:只显示月日、2:只显示星座、3:所有人可见。
  1664. * - qq string 用户QQ号码。
  1665. * - qq_visible int 用户QQ可见范围,0:自己可见、1:关注人可见、2:所有人可见。
  1666. * - msn string 用户MSN。
  1667. * - msn_visible int 用户MSN可见范围,0:自己可见、1:关注人可见、2:所有人可见。
  1668. * - url string 用户博客地址。
  1669. * - url_visible int 用户博客地址可见范围,0:自己可见、1:关注人可见、2:所有人可见。
  1670. * - credentials_type int 证件类型,1:身份证、2:学生证、3:军官证、4:护照。
  1671. * - credentials_num string 证件号码。
  1672. * - email string 用户常用邮箱地址。
  1673. * - email_visible int 用户常用邮箱地址可见范围,0:自己可见、1:关注人可见、2:所有人可见。
  1674. * - lang string 语言版本,zh_cn:简体中文、zh_tw:繁体中文。
  1675. * - description string 用户描述,最长不超过70个汉字。
  1676. * 填写birthday参数时,做如下约定:
  1677. * - 只填年份时,采用1986-00-00格式;
  1678. * - 只填月份时,采用0000-08-00格式;
  1679. * - 只填某日时,采用0000-00-28格式。
  1680. * @return array
  1681. */
  1682. function update_profile($profile) {
  1683. return $this->oauth->post('account/profile/basic_update', $profile);
  1684. }
  1685. /**
  1686. * 设置教育信息
  1687. *
  1688. * 对应API:{@link http://open.weibo.com/wiki/2/account/profile/edu_update account/profile/edu_update}
  1689. *
  1690. * @access public
  1691. * @param array $edu_update 要修改的学校信息。格式:array('key1'=>'value1', 'key2'=>'value2', .....)。
  1692. * 支持设置的项:
  1693. * - type int 学校类型,1:大学、2:高中、3:中专技校、4:初中、5:小学,默认为1。必填参数
  1694. * - school_id ` int 学校代码,必填参数
  1695. * - id string 需要修改的教育信息ID,不传则为新建,传则为更新。
  1696. * - year int 入学年份,最小为1900,最大不超过当前年份
  1697. * - department string 院系或者班别。
  1698. * - visible int 开放等级,0:仅自己可见、1:关注的人可见、2:所有人可见。
  1699. * @return array
  1700. */
  1701. function edu_update($edu_update) {
  1702. return $this->oauth->post('account/profile/edu_update', $edu_update);
  1703. }
  1704. /**
  1705. * 根据学校ID删除用户的教育信息
  1706. *
  1707. * 对应API:{@link http://open.weibo.com/wiki/2/account/profile/edu_destroy account/profile/edu_destroy}
  1708. *
  1709. * @param int $id 教育信息里的学校ID。
  1710. * @return array
  1711. */
  1712. function edu_destroy($id) {
  1713. $this->id_format($id);
  1714. $params = array();
  1715. $params['id'] = $id;
  1716. return $this->oauth->post('account/profile/edu_destroy', $params);
  1717. }
  1718. /**
  1719. * 设置职业信息
  1720. *
  1721. * 对应API:{@link http://open.weibo.com/wiki/2/account/profile/car_update account/profile/car_update}
  1722. *
  1723. * @param array $car_update 要修改的职业信息。格式:array('key1'=>'value1', 'key2'=>'value2', .....)。
  1724. * 支持设置的项:
  1725. * - id string 需要更新的职业信息ID。
  1726. * - start int 进入公司年份,最小为1900,最大为当年年份。
  1727. * - end int 离开公司年份,至今填0。
  1728. * - department string 工作部门。
  1729. * - visible int 可见范围,0:自己可见、1:关注人可见、2:所有人可见。
  1730. * - province int 省份代码ID,不可为空值。
  1731. * - city int 城市代码ID,不可为空值。
  1732. * - company string 公司名称,不可为空值。
  1733. * 参数province与city二者必选其一<br />
  1734. * 参数id为空,则为新建职业信息,参数company变为必填项,参数id非空,则为更新,参数company可选
  1735. * @return array
  1736. */
  1737. function car_update($car_update) {
  1738. return $this->oauth->post('account/profile/car_update', $car_update);
  1739. }
  1740. /**
  1741. * 根据公司ID删除用户的职业信息
  1742. *
  1743. * 对应API:{@link http://open.weibo.com/wiki/2/account/profile/car_destroy account/profile/car_destroy}
  1744. *
  1745. * @access public
  1746. * @param int $id 职业信息里的公司ID
  1747. * @return array
  1748. */
  1749. function car_destroy($id) {
  1750. $this->id_format($id);
  1751. $params = array();
  1752. $params['id'] = $id;
  1753. return $this->oauth->post('account/profile/car_destroy', $params);
  1754. }
  1755. /**
  1756. * 更改头像
  1757. *
  1758. * 对应API:{@link http://open.weibo.com/wiki/2/account/avatar/upload account/avatar/upload}
  1759. *
  1760. * @param string $image_path 要上传的头像路径, 支持url。[只支持png/jpg/gif三种格式, 增加格式请修改get_image_mime方法] 必须为小于700K的有效的GIF, JPG图片. 如果图片大于500像素将按比例缩放。
  1761. * @return array
  1762. */
  1763. function update_profile_image($image_path) {
  1764. $params = array();
  1765. $params['image'] = "@{$image_path}";
  1766. return $this->oauth->post('account/avatar/upload', $params);
  1767. }
  1768. /**
  1769. * 设置隐私信息
  1770. *
  1771. * 对应API:{@link http://open.weibo.com/wiki/2/account/update_privacy account/update_privacy}
  1772. *
  1773. * @param array $privacy_settings 要修改的隐私设置。格式:array('key1'=>'value1', 'key2'=>'value2', .....)。
  1774. * 支持设置的项:
  1775. * - comment int 是否可以评论我的微博,0:所有人、1:关注的人,默认为0。
  1776. * - geo int 是否开启地理信息,0:不开启、1:开启,默认为1。
  1777. * - message int 是否可以给我发私信,0:所有人、1:关注的人,默认为0。
  1778. * - realname int 是否可以通过真名搜索到我,0:不可以、1:可以,默认为0。
  1779. * - badge int 勋章是否可见,0:不可见、1:可见,默认为1。
  1780. * - mobile int 是否可以通过手机号码搜索到我,0:不可以、1:可以,默认为0。
  1781. * 以上参数全部选填
  1782. * @return array
  1783. */
  1784. function update_privacy($privacy_settings) {
  1785. return $this->oauth->post('account/update_privacy', $privacy_settings);
  1786. }
  1787. /**
  1788. * 获取当前用户的收藏列表
  1789. *
  1790. * 返回用户的发布的最近20条收藏信息,和用户收藏页面返回内容是一致的。
  1791. * <br />对应API:{@link http://open.weibo.com/wiki/2/favorites favorites}
  1792. *
  1793. * @access public
  1794. * @param int $page 返回结果的页码,默认为1。
  1795. * @param int $count 单页返回的记录条数,默认为50。
  1796. * @return array
  1797. */
  1798. function get_favorites($page = 1, $count = 50) {
  1799. $params = array();
  1800. $params['page'] = intval($page);
  1801. $params['count'] = intval($count);
  1802. return $this->oauth->get('favorites', $params);
  1803. }
  1804. /**
  1805. * 根据收藏ID获取指定的收藏信息
  1806. *
  1807. * 根据收藏ID获取指定的收藏信息。
  1808. * <br />对应API:{@link http://open.weibo.com/wiki/2/favorites/show favorites/show}
  1809. *
  1810. * @access public
  1811. * @param int $id 需要查询的收藏ID。
  1812. * @return array
  1813. */
  1814. function favorites_show($id) {
  1815. $params = array();
  1816. $this->id_format($id);
  1817. $params['id'] = $id;
  1818. return $this->oauth->get('favorites/show', $params);
  1819. }
  1820. /**
  1821. * 根据标签获取当前登录用户该标签下的收藏列表
  1822. *
  1823. * 对应API:{@link http://open.weibo.com/wiki/2/favorites/by_tags favorites/by_tags}
  1824. *
  1825. *
  1826. * @param int $tid 需要查询的标签ID。'
  1827. * @param int $count 单页返回的记录条数,默认为50。
  1828. * @param int $page 返回结果的页码,默认为1。
  1829. * @return array
  1830. */
  1831. function favorites_by_tags($tid, $page = 1, $count = 50) {
  1832. $params = array();
  1833. $params['tid'] = $tid;
  1834. $params['count'] = $count;
  1835. $params['page'] = $page;
  1836. return $this->oauth->get('favorites/by_tags', $params);
  1837. }
  1838. /**
  1839. * 获取当前登录用户的收藏标签列表
  1840. *
  1841. * 对应API:{@link http://open.weibo.com/wiki/2/favorites/tags favorites/tags}
  1842. *
  1843. * @access public
  1844. * @param int $count 单页返回的记录条数,默认为50。
  1845. * @param int $page 返回结果的页码,默认为1。
  1846. * @return array
  1847. */
  1848. function favorites_tags($page = 1, $count = 50) {
  1849. $params = array();
  1850. $params['count'] = $count;
  1851. $params['page'] = $page;
  1852. return $this->oauth->get('favorites/tags', $params);
  1853. }
  1854. /**
  1855. * 收藏一条微博信息
  1856. *
  1857. * 对应API:{@link http://open.weibo.com/wiki/2/favorites/create favorites/create}
  1858. *
  1859. * @access public
  1860. * @param int $sid 收藏的微博id
  1861. * @return array
  1862. */
  1863. function add_to_favorites($sid) {
  1864. $this->id_format($sid);
  1865. $params = array();
  1866. $params['id'] = $sid;
  1867. return $this->oauth->post('favorites/create', $params);
  1868. }
  1869. /**
  1870. * 删除微博收藏。
  1871. *
  1872. * 对应API:{@link http://open.weibo.com/wiki/2/favorites/destroy favorites/destroy}
  1873. *
  1874. * @access public
  1875. * @param int $id 要删除的收藏微博信息ID.
  1876. * @return array
  1877. */
  1878. function remove_from_favorites($id) {
  1879. $this->id_format($id);
  1880. $params = array();
  1881. $params['id'] = $id;
  1882. return $this->oauth->post('favorites/destroy', $params);
  1883. }
  1884. /**
  1885. * 批量删除微博收藏。
  1886. *
  1887. * 批量删除当前登录用户的收藏。出现异常时,返回HTTP400错误。
  1888. * <br />对应API:{@link http://open.weibo.com/wiki/2/favorites/destroy_batch favorites/destroy_batch}
  1889. *
  1890. * @access public
  1891. * @param mixed $fids 欲删除的一组私信ID,用半角逗号隔开,或者由一组评论ID组成的数组。最多20个。例如:"231101027525486630,201100826122315375"或array(231101027525486630,201100826122315375);
  1892. * @return array
  1893. */
  1894. function remove_from_favorites_batch($fids) {
  1895. $params = array();
  1896. if (is_array($fids) && !empty($fids)) {
  1897. foreach ($fids as $k => $v) {
  1898. $this->id_format($fids[$k]);
  1899. }
  1900. $params['ids'] = join(',', $fids);
  1901. } else {
  1902. $params['ids'] = $fids;
  1903. }
  1904. return $this->oauth->post('favorites/destroy_batch', $params);
  1905. }
  1906. /**
  1907. * 更新一条收藏的收藏标签
  1908. *
  1909. * 对应API:{@link http://open.weibo.com/wiki/2/favorites/tags/update favorites/tags/update}
  1910. *
  1911. * @access public
  1912. * @param int $id 需要更新的收藏ID。
  1913. * @param string $tags 需要更新的标签内容,用半角逗号分隔,最多不超过2条。
  1914. * @return array
  1915. */
  1916. function favorites_tags_update($id, $tags) {
  1917. $params = array();
  1918. $params['id'] = $id;
  1919. if (is_array($tags) && !empty($tags)) {
  1920. foreach ($tags as $k => $v) {
  1921. $this->id_format($tags[$k]);
  1922. }
  1923. $params['tags'] = join(',', $tags);
  1924. } else {
  1925. $params['tags'] = $tags;
  1926. }
  1927. return $this->oauth->post('favorites/tags/update', $params);
  1928. }
  1929. /**
  1930. * 更新当前登录用户所有收藏下的指定标签
  1931. *
  1932. * 对应API:{@link http://open.weibo.com/wiki/2/favorites/tags/update_batch favorites/tags/update_batch}
  1933. *
  1934. * @param int $tid 需要更新的标签ID。必填
  1935. * @param string $tag 需要更新的标签内容。必填
  1936. * @return array
  1937. */
  1938. function favorites_update_batch($tid, $tag) {
  1939. $params = array();
  1940. $params['tid'] = $tid;
  1941. $params['tag'] = $tag;
  1942. return $this->oauth->post('favorites/tags/update_batch', $params);
  1943. }
  1944. /**
  1945. * 删除当前登录用户所有收藏下的指定标签
  1946. *
  1947. * 删除标签后,该用户所有收藏中,添加了该标签的收藏均解除与该标签的关联关系
  1948. * <br />对应API:{@link http://open.weibo.com/wiki/2/favorites/tags/destroy_batch favorites/tags/destroy_batch}
  1949. *
  1950. * @param int $tid 需要更新的标签ID。必填
  1951. * @return array
  1952. */
  1953. function favorites_tags_destroy_batch($tid) {
  1954. $params = array();
  1955. $params['tid'] = $tid;
  1956. return $this->oauth->post('favorites/tags/destroy_batch', $params);
  1957. }
  1958. /**
  1959. * 获取某用户的话题
  1960. *
  1961. * 对应API:{@link http://open.weibo.com/wiki/2/trends trends}
  1962. *
  1963. * @param int $uid 查询用户的ID。默认为当前用户。可选。
  1964. * @param int $page 指定返回结果的页码。可选。
  1965. * @param int $count 单页大小。缺省值10。可选。
  1966. * @return array
  1967. */
  1968. function get_trends($uid = NULL, $page = 1, $count = 10) {
  1969. $params = array();
  1970. if ($uid) {
  1971. $params['uid'] = $uid;
  1972. } else {
  1973. $user_info = $this->get_uid();
  1974. $params['uid'] = $user_info['uid'];
  1975. }
  1976. $this->id_format($params['uid']);
  1977. $params['page'] = $page;
  1978. $params['count'] = $count;
  1979. return $this->oauth->get('trends', $params);
  1980. }
  1981. /**
  1982. * 判断当前用户是否关注某话题
  1983. *
  1984. * 对应API:{@link http://open.weibo.com/wiki/2/trends/is_follow trends/is_follow}
  1985. *
  1986. * @access public
  1987. * @param string $trend_name 话题关键字。
  1988. * @return array
  1989. */
  1990. function trends_is_follow($trend_name) {
  1991. $params = array();
  1992. $params['trend_name'] = $trend_name;
  1993. return $this->oauth->get('trends/is_follow', $params);
  1994. }
  1995. /**
  1996. * 返回最近一小时内的热门话题
  1997. *
  1998. * 对应API:{@link http://open.weibo.com/wiki/2/trends/hourly trends/hourly}
  1999. *
  2000. * @param int $base_app 是否基于当前应用来获取数据。1表示基于当前应用来获取数据,默认为0。可选。
  2001. * @return array
  2002. */
  2003. function hourly_trends($base_app = 0) {
  2004. $params = array();
  2005. $params['base_app'] = $base_app;
  2006. return $this->oauth->get('trends/hourly', $params);
  2007. }
  2008. /**
  2009. * 返回最近一天内的热门话题
  2010. *
  2011. * 对应API:{@link http://open.weibo.com/wiki/2/trends/daily trends/daily}
  2012. *
  2013. * @param int $base_app 是否基于当前应用来获取数据。1表示基于当前应用来获取数据,默认为0。可选。
  2014. * @return array
  2015. */
  2016. function daily_trends($base_app = 0) {
  2017. $params = array();
  2018. $params['base_app'] = $base_app;
  2019. return $this->oauth->get('trends/daily', $params);
  2020. }
  2021. /**
  2022. * 返回最近一周内的热门话题
  2023. *
  2024. * 对应API:{@link http://open.weibo.com/wiki/2/trends/weekly trends/weekly}
  2025. *
  2026. * @access public
  2027. * @param int $base_app 是否基于当前应用来获取数据。1表示基于当前应用来获取数据,默认为0。可选。
  2028. * @return array
  2029. */
  2030. function weekly_trends($base_app = 0) {
  2031. $params = array();
  2032. $params['base_app'] = $base_app;
  2033. return $this->oauth->get('trends/weekly', $params);
  2034. }
  2035. /**
  2036. * 关注某话题
  2037. *
  2038. * 对应API:{@link http://open.weibo.com/wiki/2/trends/follow trends/follow}
  2039. *
  2040. * @access public
  2041. * @param string $trend_name 要关注的话题关键词。
  2042. * @return array
  2043. */
  2044. function follow_trends($trend_name) {
  2045. $params = array();
  2046. $params['trend_name'] = $trend_name;
  2047. return $this->oauth->post('trends/follow', $params);
  2048. }
  2049. /**
  2050. * 取消对某话题的关注
  2051. *
  2052. * 对应API:{@link http://open.weibo.com/wiki/2/trends/destroy trends/destroy}
  2053. *
  2054. * @access public
  2055. * @param int $tid 要取消关注的话题ID。
  2056. * @return array
  2057. */
  2058. function unfollow_trends($tid) {
  2059. $this->id_format($tid);
  2060. $params = array();
  2061. $params['trend_id'] = $tid;
  2062. return $this->oauth->post('trends/destroy', $params);
  2063. }
  2064. /**
  2065. * 返回指定用户的标签列表
  2066. *
  2067. * 对应API:{@link http://open.weibo.com/wiki/2/tags tags}
  2068. *
  2069. * @param int $uid 查询用户的ID。默认为当前用户。可选。
  2070. * @param int $page 指定返回结果的页码。可选。
  2071. * @param int $count 单页大小。缺省值20,最大值200。可选。
  2072. * @return array
  2073. */
  2074. function get_tags($uid = NULL, $page = 1, $count = 20) {
  2075. $params = array();
  2076. if ($uid) {
  2077. $params['uid'] = $uid;
  2078. } else {
  2079. $user_info = $this->get_uid();
  2080. $params['uid'] = $user_info['uid'];
  2081. }
  2082. $this->id_format($params['uid']);
  2083. $params['page'] = $page;
  2084. $params['count'] = $count;
  2085. return $this->oauth->get('tags', $params);
  2086. }
  2087. /**
  2088. * 批量获取用户的标签列表
  2089. *
  2090. * 对应API:{@link http://open.weibo.com/wiki/2/tags/tags_batch tags/tags_batch}
  2091. *
  2092. * @param string $uids 要获取标签的用户ID。最大20,逗号分隔。必填
  2093. * @return array
  2094. */
  2095. function get_tags_batch($uids) {
  2096. $params = array();
  2097. if (is_array($uids) && !empty($uids)) {
  2098. foreach ($uids as $k => $v) {
  2099. $this->id_format($uids[$k]);
  2100. }
  2101. $params['uids'] = join(',', $uids);
  2102. } else {
  2103. $params['uids'] = $uids;
  2104. }
  2105. return $this->oauth->get('tags/tags_batch', $params);
  2106. }
  2107. /**
  2108. * 返回用户感兴趣的标签
  2109. *
  2110. * 对应API:{@link http://open.weibo.com/wiki/2/tags/suggestions tags/suggestions}
  2111. *
  2112. * @access public
  2113. * @param int $count 单页大小。缺省值10,最大值10。可选。
  2114. * @return array
  2115. */
  2116. function get_suggest_tags($count = 10) {
  2117. $params = array();
  2118. $params['count'] = intval($count);
  2119. return $this->oauth->get('tags/suggestions', $params);
  2120. }
  2121. /**
  2122. * 为当前登录用户添加新的用户标签
  2123. *
  2124. * 对应API:{@link http://open.weibo.com/wiki/2/tags/create tags/create}
  2125. *
  2126. * @access public
  2127. * @param mixed $tags 要创建的一组标签,每个标签的长度不可超过7个汉字,14个半角字符。多个标签之间用逗号间隔,或由多个标签构成的数组。如:"abc,drf,efgh,tt"或array("abc", "drf", "efgh", "tt")
  2128. * @return array
  2129. */
  2130. function add_tags($tags) {
  2131. $params = array();
  2132. if (is_array($tags) && !empty($tags)) {
  2133. $params['tags'] = join(',', $tags);
  2134. } else {
  2135. $params['tags'] = $tags;
  2136. }
  2137. return $this->oauth->post('tags/create', $params);
  2138. }
  2139. /**
  2140. * 删除标签
  2141. *
  2142. * 对应API:{@link http://open.weibo.com/wiki/2/tags/destroy tags/destroy}
  2143. *
  2144. * @access public
  2145. * @param int $tag_id 标签ID,必填参数
  2146. * @return array
  2147. */
  2148. function delete_tag($tag_id) {
  2149. $params = array();
  2150. $params['tag_id'] = $tag_id;
  2151. return $this->oauth->post('tags/destroy', $params);
  2152. }
  2153. /**
  2154. * 批量删除标签
  2155. *
  2156. * 对应API:{@link http://open.weibo.com/wiki/2/tags/destroy_batch tags/destroy_batch}
  2157. *
  2158. * @access public
  2159. * @param mixed $ids 必选参数,要删除的tag id,多个id用半角逗号分割,最多10个。或由多个tag id构成的数组。如:“553,554,555"或array(553, 554, 555)
  2160. * @return array
  2161. */
  2162. function delete_tags($ids) {
  2163. $params = array();
  2164. if (is_array($ids) && !empty($ids)) {
  2165. $params['ids'] = join(',', $ids);
  2166. } else {
  2167. $params['ids'] = $ids;
  2168. }
  2169. return $this->oauth->post('tags/destroy_batch', $params);
  2170. }
  2171. /**
  2172. * 验证昵称是否可用,并给予建议昵称
  2173. *
  2174. * 对应API:{@link http://open.weibo.com/wiki/2/register/verify_nickname register/verify_nickname}
  2175. *
  2176. * @param string $nickname 需要验证的昵称。4-20个字符,支持中英文、数字、"_"或减号。必填
  2177. * @return array
  2178. */
  2179. function verify_nickname($nickname) {
  2180. $params = array();
  2181. $params['nickname'] = $nickname;
  2182. return $this->oauth->get('register/verify_nickname', $params);
  2183. }
  2184. /**
  2185. * 搜索用户时的联想搜索建议
  2186. *
  2187. * 对应API:{@link http://open.weibo.com/wiki/2/search/suggestions/users search/suggestions/users}
  2188. *
  2189. * @param string $q 搜索的关键字,必须做URLencoding。必填,中间最好不要出现空格
  2190. * @param int $count 返回的记录条数,默认为10。
  2191. * @return array
  2192. */
  2193. function search_users($q, $count = 10) {
  2194. $params = array();
  2195. $params['q'] = $q;
  2196. $params['count'] = $count;
  2197. return $this->oauth->get('search/suggestions/users', $params);
  2198. }
  2199. /**
  2200. * 搜索微博时的联想搜索建议
  2201. *
  2202. * 对应API:{@link http://open.weibo.com/wiki/2/search/suggestions/statuses search/suggestions/statuses}
  2203. *
  2204. * @param string $q 搜索的关键字,必须做URLencoding。必填
  2205. * @param int $count 返回的记录条数,默认为10。
  2206. * @return array
  2207. */
  2208. function search_statuses($q, $count = 10) {
  2209. $params = array();
  2210. $params['q'] = $q;
  2211. $params['count'] = $count;
  2212. return $this->oauth->get('search/suggestions/statuses', $params);
  2213. }
  2214. /**
  2215. * 搜索学校时的联想搜索建议
  2216. *
  2217. * 对应API:{@link http://open.weibo.com/wiki/2/search/suggestions/schools search/suggestions/schools}
  2218. *
  2219. * @param string $q 搜索的关键字,必须做URLencoding。必填
  2220. * @param int $count 返回的记录条数,默认为10。
  2221. * @param int type 学校类型,0:全部、1:大学、2:高中、3:中专技校、4:初中、5:小学,默认为0。选填
  2222. * @return array
  2223. */
  2224. function search_schools($q, $count = 10, $type = 1) {
  2225. $params = array();
  2226. $params['q'] = $q;
  2227. $params['count'] = $count;
  2228. $params['type'] = $type;
  2229. return $this->oauth->get('search/suggestions/schools', $params);
  2230. }
  2231. /**
  2232. * 搜索公司时的联想搜索建议
  2233. *
  2234. * 对应API:{@link http://open.weibo.com/wiki/2/search/suggestions/companies search/suggestions/companies}
  2235. *
  2236. * @param string $q 搜索的关键字,必须做URLencoding。必填
  2237. * @param int $count 返回的记录条数,默认为10。
  2238. * @return array
  2239. */
  2240. function search_companies($q, $count = 10) {
  2241. $params = array();
  2242. $params['q'] = $q;
  2243. $params['count'] = $count;
  2244. return $this->oauth->get('search/suggestions/companies', $params);
  2245. }
  2246. /**
  2247. * @用户时的联想建议
  2248. *
  2249. * 对应API:{@link http://open.weibo.com/wiki/2/search/suggestions/at_users search/suggestions/at_users}
  2250. *
  2251. * @param string $q 搜索的关键字,必须做URLencoding。必填
  2252. * @param int $count 返回的记录条数,默认为10。
  2253. * @param int $type 联想类型,0:关注、1:粉丝。必填
  2254. * @param int $range 联想范围,0:只联想关注人、1:只联想关注人的备注、2:全部,默认为2。选填
  2255. * @return array
  2256. */
  2257. function search_at_users($q, $count = 10, $type = 0, $range = 2) {
  2258. $params = array();
  2259. $params['q'] = $q;
  2260. $params['count'] = $count;
  2261. $params['type'] = $type;
  2262. $params['range'] = $range;
  2263. return $this->oauth->get('search/suggestions/at_users', $params);
  2264. }
  2265. /**
  2266. * 搜索与指定的一个或多个条件相匹配的微博
  2267. *
  2268. * 对应API:{@link http://open.weibo.com/wiki/2/search/statuses search/statuses}
  2269. *
  2270. * @param array $query 搜索选项。格式:array('key0'=>'value0', 'key1'=>'value1', ....)。支持的key:
  2271. * - q string 搜索的关键字,必须进行URLencode。
  2272. * - filter_ori int 过滤器,是否为原创,0:全部、1:原创、2:转发,默认为0。
  2273. * - filter_pic int 过滤器。是否包含图片,0:全部、1:包含、2:不包含,默认为0。
  2274. * - fuid int 搜索的微博作者的用户UID。
  2275. * - province int 搜索的省份范围,省份ID。
  2276. * - city int 搜索的城市范围,城市ID。
  2277. * - starttime int 开始时间,Unix时间戳。
  2278. * - endtime int 结束时间,Unix时间戳。
  2279. * - count int 单页返回的记录条数,默认为10。
  2280. * - page int 返回结果的页码,默认为1。
  2281. * - needcount boolean 返回结果中是否包含返回记录数,true:返回、false:不返回,默认为false。
  2282. * - base_app int 是否只获取当前应用的数据。0为否(所有数据),1为是(仅当前应用),默认为0。
  2283. * needcount参数不同,会导致相应的返回值结构不同
  2284. * 以上参数全部选填
  2285. * @return array
  2286. */
  2287. function search_statuses_high($query) {
  2288. return $this->oauth->get('search/statuses', $query);
  2289. }
  2290. /**
  2291. * 通过关键词搜索用户
  2292. *
  2293. * 对应API:{@link http://open.weibo.com/wiki/2/search/users search/users}
  2294. *
  2295. * @param array $query 搜索选项。格式:array('key0'=>'value0', 'key1'=>'value1', ....)。支持的key:
  2296. * - q string 搜索的关键字,必须进行URLencode。
  2297. * - snick int 搜索范围是否包含昵称,0:不包含、1:包含。
  2298. * - sdomain int 搜索范围是否包含个性域名,0:不包含、1:包含。
  2299. * - sintro int 搜索范围是否包含简介,0:不包含、1:包含。
  2300. * - stag int 搜索范围是否包含标签,0:不包含、1:包含。
  2301. * - province int 搜索的省份范围,省份ID。
  2302. * - city int 搜索的城市范围,城市ID。
  2303. * - gender string 搜索的性别范围,m:男、f:女。
  2304. * - comorsch string 搜索的公司学校名称。
  2305. * - sort int 排序方式,1:按更新时间、2:按粉丝数,默认为1。
  2306. * - count int 单页返回的记录条数,默认为10。
  2307. * - page int 返回结果的页码,默认为1。
  2308. * - base_app int 是否只获取当前应用的数据。0为否(所有数据),1为是(仅当前应用),默认为0。
  2309. * 以上所有参数全部选填
  2310. * @return array
  2311. */
  2312. function search_users_keywords($query) {
  2313. return $this->oauth->get('search/users', $query);
  2314. }
  2315. /**
  2316. * 获取系统推荐用户
  2317. *
  2318. * 返回系统推荐的用户列表。
  2319. * <br />对应API:{@link http://open.weibo.com/wiki/2/suggestions/users/hot suggestions/users/hot}
  2320. *
  2321. * @access public
  2322. * @param string $category 分类,可选参数,返回某一类别的推荐用户,默认为 default。如果不在以下分类中,返回空列表:<br />
  2323. * - default:人气关注
  2324. * - ent:影视名星
  2325. * - hk_famous:港台名人
  2326. * - model:模特
  2327. * - cooking:美食&健康
  2328. * - sport:体育名人
  2329. * - finance:商界名人
  2330. * - tech:IT互联网
  2331. * - singer:歌手
  2332. * - writer:作家
  2333. * - moderator:主持人
  2334. * - medium:媒体总编
  2335. * - stockplayer:炒股高手
  2336. * @return array
  2337. */
  2338. function hot_users($category = "default") {
  2339. $params = array();
  2340. $params['category'] = $category;
  2341. return $this->oauth->get('suggestions/users/hot', $params);
  2342. }
  2343. /**
  2344. * 获取用户可能感兴趣的人
  2345. *
  2346. * 对应API:{@link http://open.weibo.com/wiki/2/suggestions/users/may_interested suggestions/users/may_interested}
  2347. *
  2348. * @access public
  2349. * @param int $page 返回结果的页码,默认为1。
  2350. * @param int $count 单页返回的记录条数,默认为10。
  2351. * @return array
  2352. * @ignore
  2353. */
  2354. function suggestions_may_interested($page = 1, $count = 10) {
  2355. $params = array();
  2356. $params['page'] = $page;
  2357. $params['count'] = $count;
  2358. return $this->oauth->get('suggestions/users/may_interested', $params);
  2359. }
  2360. /**
  2361. * 根据一段微博正文推荐相关微博用户。
  2362. *
  2363. * 对应API:{@link http://open.weibo.com/wiki/2/suggestions/users/by_status suggestions/users/by_status}
  2364. *
  2365. * @access public
  2366. * @param string $content 微博正文内容。
  2367. * @param int $num 返回结果数目,默认为10。
  2368. * @return array
  2369. */
  2370. function suggestions_users_by_status($content, $num = 10) {
  2371. $params = array();
  2372. $params['content'] = $content;
  2373. $params['num'] = $num;
  2374. return $this->oauth->get('suggestions/users/by_status', $params);
  2375. }
  2376. /**
  2377. * 热门收藏
  2378. *
  2379. * 对应API:{@link http://open.weibo.com/wiki/2/suggestions/favorites/hot suggestions/favorites/hot}
  2380. *
  2381. * @param int $count 每页返回结果数,默认20。选填
  2382. * @param int $page 返回页码,默认1。选填
  2383. * @return array
  2384. */
  2385. function hot_favorites($page = 1, $count = 20) {
  2386. $params = array();
  2387. $params['count'] = $count;
  2388. $params['page'] = $page;
  2389. return $this->oauth->get('suggestions/favorites/hot', $params);
  2390. }
  2391. /**
  2392. * 把某人标识为不感兴趣的人
  2393. *
  2394. * 对应API:{@link http://open.weibo.com/wiki/2/suggestions/users/not_interested suggestions/users/not_interested}
  2395. *
  2396. * @param int $uid 不感兴趣的用户的UID。
  2397. * @return array
  2398. */
  2399. function put_users_not_interested($uid) {
  2400. $params = array();
  2401. $params['uid'] = $uid;
  2402. return $this->oauth->post('suggestions/users/not_interested', $params);
  2403. }
  2404. // =========================================
  2405. /**
  2406. * @ignore
  2407. */
  2408. protected function request_with_pager($url, $page = false, $count = false, $params = array()) {
  2409. if ($page)
  2410. $params['page'] = $page;
  2411. if ($count)
  2412. $params['count'] = $count;
  2413. return $this->oauth->get($url, $params);
  2414. }
  2415. /**
  2416. * @ignore
  2417. */
  2418. protected function request_with_uid($url, $uid_or_name, $page = false, $count = false, $cursor = false, $post = false, $params = array()) {
  2419. if ($page)
  2420. $params['page'] = $page;
  2421. if ($count)
  2422. $params['count'] = $count;
  2423. if ($cursor)
  2424. $params['cursor'] = $cursor;
  2425. if ($post)
  2426. $method = 'post';
  2427. else
  2428. $method = 'get';
  2429. if ($uid_or_name !== NULL) {
  2430. $this->id_format($uid_or_name);
  2431. $params['id'] = $uid_or_name;
  2432. }
  2433. return $this->oauth->$method($url, $params);
  2434. }
  2435. /**
  2436. * @ignore
  2437. */
  2438. protected function id_format(&$id) {
  2439. if (is_float($id)) {
  2440. $id = number_format($id, 0, '', '');
  2441. } elseif (is_string($id)) {
  2442. $id = trim($id);
  2443. }
  2444. }
  2445. }