2

1) 我设置了我的 Facebook 应用程序。2) 我得到了我的 facebook 页面 id、app_secret 和访问令牌。

function fetchUrl($url) {

  $ch = curl_init();
  curl_setopt($ch, CURLOPT_URL, $url);
  curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  curl_setopt($ch, CURLOPT_TIMEOUT, 20);

  $feedData = curl_exec($ch);
  curl_close($ch); 

  return $feedData;

}

$profile_id = "288644066152";

//App Info, needed for Auth
$app_id = "appid";
$app_secret = "app_secret";  // do not expose app secret!

//Retrieve auth token
$authToken = fetchUrl("https://graph.facebook.com/oauth/access_token?type=client_cred&client_id={$app_id}&client_secret={$app_secret}");

$json_object = fetchUrl("https://graph.facebook.com/{$profile_id}/feed?{$authToken}");

print_r($json_object);

回报:

{"data":[]}

有什么帮助吗?谢谢

4

1 回答 1

0

有两种类型的访问令牌。用户访问令牌和应用访问令牌。

尝试类似:

https://www.facebook.com/dialog/oauth?client_id=******&redirect_uri=*************&scope=user_about_me,publish_stream,friends_about_me,****&state=SOMETHING
于 2012-11-10T01:16:09.857 回答