How to call Firebase Callable Functions with HTTP?

后端 未结 2 1212
清酒与你
清酒与你 2020-12-31 02:37

I realised that the new Callable Cloud Functions can still be called as if they were HTTP events, i.e. they can still be reached under http://us-central1-$projectname.

相关标签:
2条回答
  • 2020-12-31 02:51

    EDIT: The details of the protocol have been formally documented now.

    HTTPS Callable functions must be called using the POST method, the Content-Type must be application/json or application/json; charset=utf-8, and the body must contain a field called data for the data to be passed to the method.

    Example body:

    {
        "data": {
            "aString": "some string",
            "anInt": 57,
            "aFloat": 1.23
        }
    }
    

    If you are calling a function by creating your own http request, you may find it more flexible to use a regular HTTPS function instead.

    0 讨论(0)
  • 2020-12-31 03:10

    You can use Firebase CLI firebase functions:shell to invoke onCall(..) functions

    Steps:

    1. Run cmd: firebase functions:shell
    • This will give you the prompt firebase >
    1. At the prompt call the func, and pass empty body if no params
    • firebase > someFuncAbc({})

    Only tested with deployed functions.

    Thanks to answer in this thread: https://stackoverflow.com/a/62051894/2162226

    Yes, this answer deviates from the OP that requests how to do this with HTTP .. but adding here as an alternate way to make the calls simply from the CLI, without having to set HTTP headers, set up the HTTP client like curl or Postman, etc.

    0 讨论(0)
提交回复
热议问题