You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are developing an app in which we are trying to use Firebase's Authentication with a custom OIDC provider, but we are facing some errors when trying to sign in.
We have already followed the steps described in this guide: https://firebase.google.com/docs/auth/web/openid-connect
However, when we try to sign in, we receive the following error:
{
"error": {
"code": 400,
"message": "INVALID_IDP_RESPONSE : Error connecting to the given credential's issuer.",
"errors": [
{
"message": "INVALID_IDP_RESPONSE : Error connecting to the given credential's issuer.",
"domain": "global",
"reason": "invalid"
}
]
}
}
We have also tried to follow the troubleshooting guide available below, but none of the checks we executed indicated a problem.
What is authProvider at this time? Can you log it? Could there be something wrong with the way React Context is providing the value?
Double check that the provider name you used in the provider initialization (const provider = new OAuthProvider('oidc.example-provider');) matches the one in Firebase console (listed as "Provider Id: oidc.your-provider-name") and note that it's case sensitive. You can also log authProvider.providerId in this component to make sure it's what you expect.
Operating System
Ubuntu 22
Environment (if applicable)
Chrome 132
Firebase SDK Version
11.0.1
Firebase SDK Product(s)
Auth
Project Tooling
React 19 App With Vite
Detailed Problem Description
We are developing an app in which we are trying to use Firebase's Authentication with a custom OIDC provider, but we are facing some errors when trying to sign in.
We have already followed the steps described in this guide: https://firebase.google.com/docs/auth/web/openid-connect
However, when we try to sign in, we receive the following error:
We have also tried to follow the troubleshooting guide available below, but none of the checks we executed indicated a problem.
https://cloud.google.com/iam/docs/troubleshooting-workforce-identity-federation#oidc_sign-in_errors
Steps and code to reproduce issue
Clicking on sign in button fails and redirect us back to our app.
The text was updated successfully, but these errors were encountered: