How to call Firebase Callable Functions with HTTP?

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

A significant bonus with this approach is that from the shell you can run the functions available in your local env. - Firestore calls, etc - without having to actually deploy those functions to the cloud project.

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({})

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.


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.