我正在按国家/地区设置关注度最高的帐户列表。我正在使用TwitterAPIExchange,但找不到正确的API。
我找到了以下API,但无法正确管理:https : //developer.twitter.com/en/docs/geo/place-information/overview
你能帮助我吗?
$url = "https://api.twitter.com/1.1/geo/id/df51dec6f4ee2b2c.json";
$requestMethod = "GET";
$twitter = new TwitterAPIExchange($settings);
$response = $twitter->setGetfield($getfield)
->buildOauth($url, $requestMethod)
->performRequest();
$string = json_decode($response, true);
echo '<pre>';
print_r($string);
echo '</pre>';