我是foursquare API的新手。我正在尝试使其与我的 wordpress 网站(列表目录,如场地)一起工作,并且对于每个场地,我想显示“hereNow”用户以及照片和评论/提示。我已经注册了我的应用程序,所以我有客户端 ID 和密码。对于提示/照片,我想我不能没有 Auth,但我想知道为什么现在我的数组中缺少这里。这是我在我的 php 文件中使用的查询:
$venue = $fsObjUnAuth->get('/venues/search', array('near' => $city, 'query' => $title ));
在哪里
$fsObjUnAuth = new EpiFoursquare($clientId, $clientSecret);
城市和标题取自 Wordpress 自定义字段。
我得到了正确的输出,但现在丢失了,这里是摘录:
["verified"]=>
bool(false)
["stats"]=>
object(stdClass)#20 (3) {
["checkinsCount"]=>
int(1)
["usersCount"]=>
int(1)
["tipCount"]=>
int(0)
}
["likes"]=>
object(stdClass)#21 (2) {
["count"]=>
int(0)
["groups"]=>
array(0) {
}
}
["specials"]=>
array(0) {
}
}
它应该低于特价商品,但没有痕迹。在 Api Explorer 中,它经常出现,但在我的文件中没有。有什么提示吗?
谢谢!