ウェブサイトhttps://code.google.com/apis/consoleでアプリケーションを登録し、生成されたクライアントID:とクライアントシークレットをアプリに設定して、Googleでログインしようとしました。残念ながら、私はエラーメッセージを受け取りました:
Error: redirect_uri_mismatch
The redirect URI in the request: http://127.0.0.1:3000/auth/google_oauth2/callback did not match a registered redirect URI
scope=https://www.googleapis.com/auth/userinfo.profile https://www.googleapis.com/auth/userinfo.email
response_type=code
redirect_uri=http://127.0.0.1:3000/auth/google_oauth2/callback
access_type=offline
approval_prompt=force
client_id=generated_id
このメッセージはどういう意味ですか、どうすれば修正できますか?私はgem omniauth-google-oauth2を使用しています。
https://accounts.google.com/o/oauth2/auth?client_id={client_id}&response_type=token&redirect_uri={redirect_uri}&scope={scope}
、アプリ全体を実行してテストするのではなく、ブラウザのようにURLにアクセスしてこの問題をデバッグできることに注意してください。