Cloud Functions for Firebase and third party api

梦想的初衷 提交于 2019-11-26 22:26:50

问题


My problem is to make use of an API along with Firebase Functions, the API in question is Coinbase, I use the API with node, if I test in the terminal with the node command it works, however when I use it with Firebase Functions Does not work at all, I've been trying to solve the problem for almost a week now.

The code is as follows>

    var functions = require('firebase-functions');


    var Client = require('coinbase').Client;
    var client = new Client({
        "apiKey": "xxxxxxxxxxxx",
        "apiSecret": "xxxxxxxxxxxxxxxxxxxxxxx"
    });    


exports.helloWorld = functions.https.onRequest((request, response) => {



    this.client.getAccounts({}, function(err, accounts) {

        if(accounts){

            response.send(accounts);
         }else{
            response.send(err);

        }

    });
});

The error: https://us-central1-investimentos-b7406.cloudfunctions.net/helloWorld

The Coinbase API: https://developers.coinbase.com/docs/wallet/guides/bitcoin-wallet


回答1:


There's a warning in the docs:

Firebase projects on the Spark plan can make only outbound requests to Google APIs. Requests to third-party APIs fail with an error. For more information about upgrading your project, see Pricing.

So you'll need to upgrade to a paid plan to use external APIs.



来源:https://stackoverflow.com/questions/43967510/cloud-functions-for-firebase-and-third-party-api

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!