0

古い Facebook アクセス トークン (Oauth1) では、サーバーに何も渡さずに、ユーザーの Facebook ID とトークンの有効期限を取得できました。

これは新しい Oauth2 トークンで可能ですか? トークン自体から取得できるデータはありますか?

at token を /me に渡して多くの情報を取得できることは知っていますが (トークンがまだ有効であると仮定して)、ネットワーク接続なしで、および/または期限切れのトークンを使用してクライアント上でこれを排他的に行う方法があるかどうかに興味があります.

4

1 に答える 1

2

In short - No!
You need to hit the https://graph.facebook.com/me endpoint with the access token even to get the Facebook ID, you cannot do anything with the access token on the client.

于 2013-05-05T05:55:21.630 に答える