我正在从Foursquare API获取登记入住的地方。但是,API会获得所有签到权。我只需要5张登记入住。如何设置限制?
我的代码:
<?php if(!isset($_GET['code']) && !isset($_COOKIE['access_token'])) {
$authorizeUrl = $fsObjUnAuth->getAuthorizeUrl($redirectUri);
} else {}
$creds = $fsObj->get("/venues/{$userId}/herenow");
$f=0;
foreach ($creds->response->hereNow as $item) {}
foreach ($item as $item2) {
foreach ($item2 as $item3) {
$f++;
if($item3->firstName) {
echo '<div class="user-normal">';
echo '<img src="'.$item3->photo.'" class="avatar" />';
echo '<span class="username-def">';
echo $item3->firstName; echo ' ';
echo $item3->lastName;
echo '</span>';
echo '</div>';
if ($f==5) break;
}
;};}; ?>
我试试这个apigee.com并正在工作http://prntscr.com/1phdin。 apigee正在创建oauth_token,但我不明白如何。我收到“无效的oauth_token”错误,因为我无法创建自己的错误。