Facebookの名前や電子メールなどのユーザーのプロフィール情報を取得しようとしていますが、それ以上は動作しません。 IDを使用して別のユーザーのアカウント情報を取得することは可能ですか?私はFacebookのSDKを使用して、このresposeを取得Facebookのフェッチユーザーのプロフィール情報
:
このURLを使用してFatal error: Uncaught exception 'Facebook\Exceptions\FacebookAuthenticationException' with message 'Unsupported get request. Object with ID '1691918994166305' does not exist, cannot be loaded due to missing permissions, or does not support this operation. Please read the Graph API documentation at https://developers.facebook.com/docs/graph-api ' in
/Applications/XAMPP/xamppfiles/htdocs/fizops.com/facebook/vendor/facebook/graph-sdk/src/Facebook/Exceptions/FacebookResponseException.php:106 Stack trace: #0 /Applications/XAMPP/xamppfiles/htdocs/fizops.com/facebook/vendor/facebook/graph-sdk/src/Facebook/FacebookResponse.php(210): Facebook\Exceptions\FacebookResponseException::create(Object(Facebook\FacebookResponse))
#1 /Applications/XAMPP/xamppfiles/htdocs/fizops.com/facebook/vendor/facebook/graph-sdk/src/Facebook/FacebookResponse.php(255): Facebook\FacebookResponse->makeException() #2 /Applications/XAMPP/xamppfiles/htdocs/fizops.com/facebook/vendor/facebook/graph-sdk/src/Facebook/FacebookResponse.php(82): Facebook\FacebookRes in /Applications/XAMPP/xamppfiles/htdocs/fizops.com/facebook/vendor/facebook/graph-sdk/src/Facebook/Exceptions/FacebookResponseException.php on line 106
:
https://graph.facebook.com/1777651498915121/?access_token=xxx|xxx
は応答:
{ "error": { "message": "Unsupported get request. Object with ID '1777651498915121' does not exist, cannot be loaded due to missing permissions, or does not support this operation. Please read the Graph API documentation at https://developers.facebook.com/docs/graph-api ", "type": "GraphMethodException", "code": 100, "fbtrace_id": "HYwXjUHaT8W" } }
あなたはどこからユーザーIDを取得しましたか?実際にあなたのアプリに属するアプリスコープのIDですか? – CBroe
ユーザーIDの代わりに/ meを使用してください。もちろん、ユーザーアクセストークンを使用してください。 – luschn
私はReamazeからユーザーIDを取得しました。グラフapiを使用してfacebookに戻すことができます。 – Boy