私は主要な機能を備えたメインfirebaseクラウド機能を持っています。しかし、私は主なクラウド機能上の機能を使用する、より具体的な別のものを作成する必要があります。 http Postをリクエストしたり、あるFirebaseクラウド機能から別のFirebaseクラウド機能に無料アカウントをリクエストすることはできますか?Firebaseクラウド機能別のfirebaseクラウド機能へのHTTPリクエスト
私はそれを作ろうとしましたが、「ENOTFOUND」というメッセージが表示されました。私のコードで何か問題があるかどうか、または無料アカウントの制限にすぎませんか?
index.js'use strict';
const functions = require('firebase-functions');
const express = require('express');
const app = express();
app.post('/test', function(req, res) {
var request = require('request')
var options = {
method: 'post',
body: req.body, // re-send the incoming body to the main cloud function
json: true,
url: '<main cloud url>',
headers: req.headers // re-send the incoming headers the main cloud function
}
request(options, function (err, response, body) {
if (err || response.statusCode != 200) {
res.status(400).send(err); //re-send the received error to the client
return
}
res.send(body); //re-send the received response to the client
});
});
exports.checkAtivation = functions.https.onRequest(app);
コードを共有していただけますか? –
コードを編集するには –