Httpscallable Return From Python
I have an Xcode Application (written in Swift) that calls an HTTP python function that's deployed in Firebase. It should be getting a Response in return but for some reason, it alw
Solution 1:
"callable" functions are only supported on Cloud Functions by using the Firebase SDK for node. They won't work for Python, unless you implement the callable protocol in the function itself. If you want to invoke a regular HTTP function that you wrote in python, you won't be able to invoke it using the Firebase SDK on the client.
If you want to try to implement the protocol on the server side, the documentation for how callables work is here: https://firebase.google.com/docs/functions/callable-reference
Baca Juga
Post a Comment for "Httpscallable Return From Python"