我需要从已注册的Instagram获取照片和说明。 正如我从github https://github.com/cosenary/Instagram-PHP-API上的文档中了解的那样 您需要先将auth链接放入ant,然后在单击它后使用auth令牌,您将被重定向到某个回调URL,然后您可以获取媒体。但我可以以某种方式自动登录而不点击链接? 我有一些
QApplication::processEvents()
在https://www.instagram.com/developer/注册后获取我的数据。我怎样才能得到我想要的东西?
答案 0 :(得分:2)
我想尝试这样的事情:
$userid = "User-ID-Goes-Here";
$accessToken = "Token-Goes-Here";
// Gets our data
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;
}
// Pulls and parses data.
$result = fetchData("https://api.instagram.com/v1/users/{$userid}/media/recent/?access_token={$accessToken}");
$result = json_decode($result);
//use data here
来源:http://blueprintinteractive.com/blog/how-instagram-api-fancybox-simplified