Hi!
I want to create an app using Vue.js as frontend and Azure Functions (python, javascript and c#) as backend.
What I have for now: auth0 works for authenticating in my vue.js frontend, so I can see my bearer token, email and other user data of my google account
What I still need to do: pass bearer token to my Azure Functions APIs and check somehow if the tokens are good in every call
I just don’t know how to do it and I can’t find any tutorial which just works fine without strange errors that I can’t resolve…
What kind of errors are you running into? You should be able to set up your functions like a typical API and verify the token signature using one of our libraries. I don’t have an example to give you, but it should be fairly painless to set up following our quickstarts. Here is an example API with express and node.
Let me know how else I can help. Posting your code is always a good start!