我使用Facebook的PHP SDK(V4)無效appsecret_proof安裝SDK後獲取用戶信息, ,我添加代碼圖表返回了一個錯誤:在API參數提供
$fb = new Facebook\Facebook([
'app_id' => 'my app id',
'app_secret' => 'my app secret',
'default_graph_version' => 'v2.5',
]);
try {
// Returns a `Facebook\FacebookResponse` object
$access_token= //copied from my https://developers.facebook.com/tools/explorer/
$response = $fb->get('/me?fields=id,name', '$access_token');
} catch(Facebook\Exceptions\FacebookResponseException $e) {
echo 'Graph returned an error: ' . $e->getMessage();
exit;
} catch(Facebook\Exceptions\FacebookSDKException $e) {
echo 'Facebook SDK returned an error: ' . $e->getMessage();
exit;
}
$user = $response->getGraphUser();
echo 'Name: ' . $user['name'];
但是當我運行網頁它給了我這個錯誤,
Graph returned an error: Invalid appsecret_proof provided in the API argument
我正在正確地複製應用程序的祕密,這可能是對這種錯誤的原因和我應該如何解決這一問題?
我不小心將APP_ID複製到了APP_SECRET。感謝這個答案。 –