Hey I'm getting a really weird error where trying ...
# support-questions-legacy
f
Hey I'm getting a really weird error where trying to sign in with Google results in this:
r
Hey @fluentcoding
Could you enable backend debug logs in our SDK and show the output when you get a 404 from the api?
f
sure thing
r
You can post it here. I’ll probably have a look at in in the next 12 hours and get back.
f
That would be really nice, appreciate this support a lot ^^
hmm thats odd, no recipe matched although i configured google on both the frontend and backend:
Copy code
js
providers: [
  {
    config: {
      thirdPartyId: "google",
      clients: [
        {
          clientId: process.env.GOOGLE_CLIENT_ID!,
          clientSecret: process.env.GOOGLE_CLIENT_SECRET!,
        },
      ],
    },
  },
],
Copy code
js
signInAndUpFeature: {
  providers: [Google.init(), Discord.init()],
},
r
What’s the recipe on the frontend and backend that u have configured in recipeList?
f
ThirdParty and ThirdPartyEmailPassword
that might be it.. i just followed the official instructions
r
Right. So have just thirdpartyemailpassword on both frontend and backend
Remove just third party recipe
f
alright, thanks a lot 👌
maybe it would help to clarify that in the official docs so that doesn't happen again, just in case
r
The docs are correct
f
oh wait
thats totally my fault im sorry
r
U may have visited the other recipe docs by mistake
f
yes exactly
i used google for this
alright thanks!
6 Views