本文整理汇总了PHP中SaeTClientV2::mentions方法的典型用法代码示例。如果您正苦于以下问题:PHP SaeTClientV2::mentions方法的具体用法?PHP SaeTClientV2::mentions怎么用?PHP SaeTClientV2::mentions使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SaeTClientV2
的用法示例。
在下文中一共展示了SaeTClientV2::mentions方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: array
$o = new SaeTOAuthV2(WB_AKEY, WB_SKEY);
$keys = array();
$keys['username'] = $_REQUEST['username'];
$keys['password'] = $_REQUEST['password'];
try {
$token = $o->getAccessToken('password', $keys);
} catch (OAuthException $e) {
echo json_encode(array('error' => $e->getMessage()));
}
if ($token) {
$c = new SaeTClientV2(WB_AKEY, WB_SKEY, $token['access_token']);
//如果Post中带有since_id
if (is_numeric($_REQUEST['since_id']) && !empty($_REQUEST['since_id'])) {
//获得比since_id更晚的mention
//API:{@link http://open.weibo.com/wiki/2/statuses/mentions statuses/mentions}
$atme = $c->mentions(1, NULL, $_REQUEST['since_id'], 0);
} else {
//没有since_id
$atme = $c->mentions(1, NULL, NULL, 0);
}
//若指定since_id,倒序排列获得的mentions数组,第一组即是since_id的后一条
//若未指定since_id,就不用倒序,直接获取最新一条
if (is_numeric($_REQUEST['since_id']) && !empty($_REQUEST['since_id'])) {
rsort($atme[statuses], SORT_STRING);
}
if (isset($atme[error])) {
echo json_encode($atme);
} else {
if (isset($atme[statuses][0])) {
//构造json
$new_atme = array('id' => $atme[statuses][0][id], 'text' => $atme[statuses][0][text], 'uid' => $atme[statuses][0][user][id], 'user' => $atme[statuses][0][user][screen_name]);