Use firebase cloud function to send POST request to non-google server

JavascriptFirebaseGoogle Cloud-Functions

Javascript Problem Overview


I was wondering if its possible to use a firebase cloud function to send a post request to a non-google server (from what I can find I need to be on the blaze plan in order to interact with non google servers)

Basically I want to POST to an external server running on an arduino whenever a value is added to my database.

I have looked through the docs and found examples of having a cloud function respond to an HTTP post request (HTTP cloud functions) but can't seem to find any examples of posting to an external server. Is this possible?

Javascript Solutions


Solution 1 - Javascript

Note: request package has been deprecated as stated in the npm page request-npm. Consider using other alternatives like axios

This can be done using the request module:

// import the module
var request = require('request');

// make the request
request('put your external url here', function (error, response, body) {
    if (!error && response.statusCode == 200) {
        //here put what you want to do with the request
    }
})

NOTE: This will only work on paid plans. It is not possible to call non-google APIs using the free Spark plan as explained on the Firebase pricing page:

> The Spark plan allows outbound network requests only to Google-owned services. Inbound invocation requests are allowed within the quota. On the Blaze plan, Cloud Functions provides a perpetual free tier. The first 2,000,000 invocations, 400,000 GB-sec, 200,000 CPU-sec, and 5 GB of Internet egress traffic is provided for free each month. You are only charged on usage past this free allotment. Pricing is based on total number of invocations, and compute time. Compute time is variable based on the amount of memory and CPU provisioned for a function. Usage limits are also enforced through daily and 100s quotas. For more information, see Cloud Functions Pricing.

Solution 2 - Javascript

You need to install the package. Go to Firebase-Funcions directory in Terminal and type

npm install request

OR

npm install request-promise

Use this example for test: https://www.npmjs.com/package/request

Solution 3 - Javascript

Remember to install the module within the functions folder!

cd functions
npm i --save request

Solution 4 - Javascript

For those of you who want to post with a JSON body this is how you can do it. (I know I needed this a while ago)

export function postWithBodyToExternalUrl(url: string, bdy: any): Promise<ReqResponse> {

  const request = require('request');

  const options = {
    url: url,
    json: true
  };
  return new Promise(function (resolve, reject) {
    request(options, function (err, resp) {
      if (err) {
        console.log(err);
        reject({ err: err });
      }
      resolve(bdy);
    });
  });
}

Solution 5 - Javascript

axios is also one of the great library to handle network calls. Some features:

  • Make XMLHttpRequests from the browser
  • Make http requests from node.js
  • Supports the Promise API
  • Intercept request and response
  • Transform request and response data
  • Cancel requests
  • Automatic transforms for JSON data
  • Client side support for protecting against XSRF
  • 67k+ stars on github
  • github documentation for more

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionStone PrestonView Question on Stackoverflow
Solution 1 - JavascriptstodiView Answer on Stackoverflow
Solution 2 - JavascriptRodolfoNetoView Answer on Stackoverflow
Solution 3 - JavascriptCesareView Answer on Stackoverflow
Solution 4 - JavascriptRuanView Answer on Stackoverflow
Solution 5 - JavascriptHemant KaushikView Answer on Stackoverflow