0

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

4

1 回答 1

0

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

Foursquare 开发者文档

例如:

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

于 2013-09-05T09:11:01.773 回答