🚀 Feature: Cloud: Is it possible to find the endpoint url of a cloud function in the current version of Cloud? · Issue #6170 · appwrite/appwrite · GitHub
More Web Proxy on the site http://driver.im/
You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to make it possible for my function to be called by a webhook from a third party. The docs say that you can find the endpoint url of a function in the Function's tab in the Appwrite console, but I'm assuming that this is for a newer version that Cloud doesn't use yet, because there is no information showing about the function's url. I wanted to know if there's some other way to find out the url of a function. Thanks
🎤 Pitch
Being able to get the endpoint urls of cloud functions would open a door to many possibilities, such as creating a public API or consuming webhook events.
👀 Have you spent some time to check if this issue has been raised before?
You can use the endpoints explicitly on Cloud as well like: https://cloud.appwrite.io/v1/functions/{functionID}/executions. Although make sure to add X-Appwrite-Project header key with the value as your Project Id.
For this to work,
you may have to use Any or All guests persmission to allow executions from anywhere. Or if you can use Server Side SDK, you should instead use that.
Something like:
External provider sends a POST request to your server, say hook.example.com/incoming.
Process that request with verifications and other stuff.
Use Server Side SDK to execute function & handle the results.
Uh oh!
There was an error while loading. Please reload this page.
🔖 Feature description
I want to make it possible for my function to be called by a webhook from a third party. The docs say that you can find the endpoint url of a function in the Function's tab in the Appwrite console, but I'm assuming that this is for a newer version that Cloud doesn't use yet, because there is no information showing about the function's url. I wanted to know if there's some other way to find out the url of a function. Thanks
🎤 Pitch
Being able to get the endpoint urls of cloud functions would open a door to many possibilities, such as creating a public API or consuming webhook events.
👀 Have you spent some time to check if this issue has been raised before?
🏢 Have you read the Code of Conduct?
The text was updated successfully, but these errors were encountered: