HTTP PATCH - Unauthorized Error #37
-
I am getting the below error with the EdgeFunction (EF) when trying to update a table of SQLite database instance. The error indicates neither a real technical issue nor a meaningful(unauthorized) issue. Please clarify and address this issue asap, I'm blocked on this.
Below is the EF code:
In the Console Logs, it is definitely a PATCH type request created via local POSTMAN app. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
@drveresh If an API key is assigned, any calls to the edge function will automatically authenticate access to the associated database using that API key. If you choose not to assign an API key, you will need to provide it when invoking the edge function. The API key can be included in the request as a query parameter named "apikey" or within the body. For more information, you can refer to this discussion about securing edge functions with an API key. Executing The specific actions performed by the edge function are independent of the HTTP method used. The typical REST method conventions do not apply to edge functions in this context. You can think of an edge function as a piece of code that runs close to your database and can perform any operation you define. You trigger this code using a GET or POST request. Within your edge function, you can access:
|
Beta Was this translation helpful? Give feedback.
@drveresh
Authorization
When creating an edge function, you have the option to assign an API key to it.
If an API key is assigned, any calls to the edge function will automatically authenticate access to the associated database using that API key.
If you choose not to assign an API key, you will need to provide it when invoking the edge function. The API key can be included in the request as a query parameter named "apikey" or within the body.
For more information, you can refer to this discussion about securing edge functions with an API key.
Executing
When executing an edge function, you should use either the GET or POST methods, depending on whether you need to include a request body.
T…