I have a Auth0 authentication page which has 3 ways to login to my service:
Facebook
Database
Google
The first 2 works great and I get the information in the response under “access_token”. The third one doesn’t work. I get an invalid signature (JWT) - e.g. “identities”:
I took this access_token from the rule hook that I have for Google integration. Even when I get the access_token after finishing the connection it gives the same error but the access token is then valid by JWT.
The problem is that it is not valid by Google, can Auth0 gives token_id and not access_token? maybe that’s the issue?
I can see that the connection was done properly and the user is registered under Users but the access_token is not working when I try to execute actions - for now I just need to login with that access token.
@matan are you using the access_token provided by Auth0 or Google? You mention it’s not working when when you try to execute actions. Which actions? When you authenticate using Google connection, the access_token you get back won’t be able to call the Google API. You’ll need to extract Google’s access token to perform actions with Google’s API. This is outlined here:
Please let me know if this is not what you are trying to do, or even if you were already able to solve your issue.