の扱い方を確認したいaccess_token
。したがって、私curl
は次のクエリを実行するために使用します。
curl -X POST https://graph.facebook.com/oauth/access_token -d "client_id=<appId>&client_secret=<secret>&grant_type=client_credentials&redirect_uri="
の値を返しますaccess_token
。
次に、友達のリストを取得したいと思います。
curl -X POST https://graph.facebook.com/me/friends -d "access_token=<token>"
次のエラーが返されます。
{"error":{"message":"An active access token must be used to query information about the current user.","type":"OAuthException","code":2500}}
ヒントはありますか?