80
44

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 3 years have passed since last update.

Firebase functionsで 403 error "Your client does not have permission to get URL /** from this server" となった場合の解決策

Posted at

久しぶりにFirebase functionsを使ってHelloWorldしようとしたら
Your client does not have permission to get URL /helloWorld from this server
となって、少しはまってしまったので解決方法をご紹介いたします。

Screenshot 2020-04-22 10.17.44.png

Google Cloud Consoleで権限を付与する

2020年1月15日時点より、Cloud Functionsの関数に関して、未認証の場合はデフォルトで呼び出しできない用になっているようです。(それまでは、未認証でも関数呼び出し実行できたが今は設定しないとできない)

そこで、Google Cloud Console内で該当する関数の設定を行います。

  1. Google Cloud ConsoleのFunctionsの設定画面にログインします
    2. Firebaseでプロジェクトを作成しているのと同一のアカウントでログインします
    3. Firebaseの該当のプロジェクトを選択します。

  2. アクセス権を付与する関数の横にあるチェックボックスをクリックします。
    cloudfunction.png

  3. 右上隅にある [情報パネルを表示] をクリックして、[権限] タブを表示します。

  4. [メンバーを追加] をクリックします。

  5. [新しいメンバー] フィールドで、「allUsers」と入力します。

  6. [役割を選択] プルダウン メニューから Cloud Functions > Cloud Functions 起動元 役割を選択します。
    Screenshot 2020-04-22 10.37.36.png

  7. [保存] をクリックします。

  8. FirebaseのFunctionsで該当の関数にアクセスします。(helloWorld)
    helloworld.png

表示されました!
これで完了です。

公式ドキュメント:

Google Cloud のドキュメントにも記載があります。
https://cloud.google.com/functions/docs/securing/managing-access-iam#allowing_unauthenticated_function_invocation

以上

80
44
1

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
80
44

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?