如何设置Foursquare API的限制

时间:2013-09-05 09:07:18

标签: php api foursquare

我正在从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”错误,因为我无法创建自己的错误。

1 个答案:

答案 0 :(得分:0)

您可以传递可选参数来设置限制

Foursquare Developer docs

例如:

/venues/{$userId}/herenow?limit=5