我很难在 Instagram 中获得最新帖子。
function fetchData($url){
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_TIMEOUT, 20);
$result = curl_exec($ch);
curl_close($ch);
return $result;
}
$result = fetchData("https://api.instagram.com/v1/users/{clientid}/media/recent/?access_token={accesstoken}&count=3");
$result = json_decode($result);
但我收到这样的信息:
很抱歉该页面无法使用。您关注的链接可能会被破坏, 或者该页面可能已被删除。
答案 0 :(得分:6)
如果您在API网址
中有username
而不是user-id
,通常会发生这种情况
你有{clientid}
,价值是多少?它应该是user-id
而不是username
,绝对不是你应用的client-id
,它应该是是所有数字。
您可以使用用户/搜索网址
获取user-id
https://api.instagram.com/v1/users/self/?access_token={Access_token}
用于搜索用户名并获取与您在API响应中搜索的用户名相匹配的user-id
的API。