0

我在 localhost(WAMP 服务器,启用 CURL)上开发了一个小脚本来从 Instagram 检索图像。基于此脚本:请参阅教程我还在 Instagram 上设置了变量。我不确定更具体的问题是什么或如何解决它(可能通过身份验证)。

  • 用户身份
  • 客户编号
  • 客户机密
  • 网址
  • 重定向 URI

这是我的用户 http://instagram.com/krondorl

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/280766222/media/recent/?access_token=df04c6989eaf4490bdac1f82554182bb");
$result = json_decode($result);

var_dump($result);
4

1 回答 1

1

试试下面对我有用的代码。确保您的网址正确。

$json_url  ='https://api.instagram.com/v1/users/280766222/media/recent/?access_token=df04c6989eaf4490bdac1f82554182bb';

// Initializing curl
$ch = curl_init( $json_url );

// Configuring curl options
$options = array(
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => array('Content-type: application/json') 
);

// Setting curl options
curl_setopt_array( $ch, $options );

// Getting results
$results =  curl_exec($ch); // Getting jSON result string

$json_decoded = json_decode($results);

顺便说一句,我检查了您的 URL 恰好不正确,并给了我以下错误。

{"meta":{"error_type":"OAuthAccessTokenException","code":400,"error_message":"The \"access_token\" provided is invalid."}}

在尝试代码之前,请先在浏览器上尝试 URL,并查看 URL 是否正确。

于 2013-01-19T14:07:02.667 回答