We are planning to use TYC as our api gateway.
Currently I'm trying to configure out how to use Firebase but it uses a bit different parameters than normal Googles auth features(issuer in the token). For example the token after signing it looks like this:
"name": "my name",
"my-claim": "true",
"aud": "my-app-c9c0b",
"auth_time": 1472368680,
"user_id": "9Lp2v00Yk0MrdfQSiwUFkCqkfIi2",
"sub": "9Lp2v00Yk0MrdfQSiwUFkCqkfIi2",
"iat": 1472368680,
"exp": 1472372280,
"email_verified": true,
"firebase": {
"identities": {
"107374840125958991773"
],
"email": [
]
},
"sign_in_provider": "custom"
}
}
In the OIDC in TYC I set the issuer as https://securetoken.google.com/my-app-c9c0b. Currently I get an error
I recognize this is not entirely an issue with Firebase nor Tyc, but it might be some configuration mistake on my side.
I appreciate any help with this.