web-dev-qa-db-ja.com

テストするダミーのGoogleアクセストークンを取得する方法oauth google api?

Gmailでログインするためのテストoauthにアクセストークンを生成する方法はありますか?

Googleアプリを作成し、クライアントIDとシークレットIDを取得しました。

私はfacebookがあなたがこのURLからそうすることを可能にすることを知っています https://developers.facebook.com/tools/accesstoken/

グーグルのためにこのような方法はありますか?

ありがとう。

38
user123456

Google OAuth playground:

https://developers.google.com/oauthplayground/

要求:

POST /oauth2/v3/token HTTP/1.1
Host: www.googleapis.com
Content-Type: application/x-www-form-urlencoded

code=4/P7q7W91a-oMsCeLvIaQm6bTrgtp7&
client_id=8819981768.apps.googleusercontent.com&
client_secret={client_secret}&
redirect_uri=https://oauth2-login-demo.appspot.com/code&
grant_type=authorization_code

(成功)応答:

{
  "access_token":"1/fFAGRNJru1FTz70BzhT3Zg",
  "expires_in":3920,
  "token_type":"Bearer"
}

Google OAuth 2.0ドキュメント https://developers.google.com/accounts/docs/OAuth2WebServer

14
coderMe