Http Action no authentication
The identity keeps returning null in my http action. I plugged in the Auth0 access token in the request header as shown below.
And I see in the network tab that it does send over the Authorization header and I logged it in the http action and it does send over. But for some reason I never get the identity object.
Thanks for ur guys help
4 Replies
Thanks for posting in <#1088161997662724167>.
Reminder: If you have a Convex Pro account, use the Convex Dashboard to file support tickets.
- Provide context: What are you trying to achieve, what is the end-user interaction, what are you seeing? (full error message, command output, etc.)
- Use search.convex.dev to search Docs, Stack, and Discord all at once.
- Additionally, you can post your questions in the Convex Community's <#1228095053885476985> channel to receive a response from AI.
- Avoid tagging staff unless specifically instructed.
Thank you!
There is no user when calling an HTTP endpoint. To get the data passed in the headers and validate the request, you'll need to read that from the
request
object passed to the function:
I thought the same, turns out you can pass in a jwt: https://docs.convex.dev/functions/http-actions#authentication
HTTP Actions | Convex Developer Hub
HTTP actions allow you to build an HTTP API right in Convex!
Ah, gotcha. I hadn't seen that before. I'm not familiar with JWTs yet, so I'm afraid I can't be of further help.