3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

railsでsns認証 fb google client_id error

Last updated at Posted at 2019-07-13

1

config.omniauth :google_oauth2, ENV['GOOGLE_CLIENT_ID'] ,ENV['GOOGLE_CLIENT_SECRET']

ここの設定でつまづいた。

https://stackoverflow.com/questions/34810776/google-authentication-error-invalid-request-missing-required-parameter-client
まさしくこんな感じのclient_idがないと怒られました。

3時間ほど彷徨いましたが解決策は非常にシンプルでした。
2

config.omniauth :google_oauth2,ENV['GOOGLE_CLIENT_ID'],ENV['GOOGLE_CLIENT_SECRET']

以上の設定をしているとエラーが起きました。
わかりますか??
2の方はspaceが空いていないのが!!!!

このspaceがclient_idの読み込みを邪魔していたみたいです・・・・・。

変更した後に、serverを立ち上げ直すことを忘れないように。
また、環境変数はbashに書いていたのですが、どうもうまくいかなかったので.envのgemを用いて、そこに設定しました。git ignoreするのを忘れないように。

3
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?