Skip authorization check on Edge Functions #8569
|
Hi, I'd like to connect some webhooks to certain Edge Functions on my project, but the Edge Function return a 401 (Unauthorized). I unfortunately cannot add auth headers to the web hook. Is there any way around this? |
Answered by
kevinclarkadstech
Aug 21, 2022
Replies: 1 comment 11 replies
That would be a big security hole, depending on what the function does. You usually can attach some sort of state query parameter to web hooks and OAuth redirects. Could you do that to at least create your own sort of API key? |
11 replies
Answer selected by
deliqs
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
That would be a big security hole, depending on what the function does. You usually can attach some sort of state query parameter to web hooks and OAuth redirects. Could you do that to at least create your own sort of API key?