I'm a super n00b trying to make an HTTP request to FreshSales in Google Cloud Function using node.js.
Problems:
- not node proficient enough to do a proper google search
- don't have enough dev vocabulary to understand what I find online
However, here is the code I wrote (based on the GCF examples I found online):
/**
* HTTP Cloud Function that makes an HTTP request
*
* @param {Object} req Cloud Function request context.
* @param {Object} res Cloud Function response context.
*/
exports.makeRequest = async (req, res) => {
const url = 'https://mycompany.myfreshworks.com/crm/sales/api/contacts/123456'; // URL to send the request to
const options = {
method: "GET",
headers: {
"Content-Type": "application/json",
"Authorization": "Token token=BLABLABLA"
}
};
console.log(options);
const response = await fetch(url, options);
console.log(response.body)
console.log("Response Status : " + response.status)
res.sendStatus(response.ok ? response.body : response.status);
};
The answer I get is: Function execution took 1033 ms, finished with status: 'connection error' while I would much like to get a JSON response of some sort.
I don't really understand where my error is and if I faulted something in the setup or in the index.js function (above).
Could somebody help me?
Even a "video to watch" suggestion would help!
Thanks