Я новичок в GAE / NODEJS. Существует множество советов, чтобы звонки, размещенные в GAE, назывались междоменными, но у меня возникают проблемы с тем, чтобы приложение js моего узла вызывало API других доменов. Что мне нужно сделать, чтобы GAE разрешил междоменные звонки? Мой код:
app.get('/listProducts', (req, res) => {
request.get('https://[cross domain]/api/2.0/products', function (error, response, body) {
console.log('error:', error); // Print the error if one occurred
console.log('statusCode:', response && response.statusCode); // Print the response status code if a response was received
console.log('body:', body); // Print the HTML for the Google homepage.
}).auth(null, null, true, '[key goes here]');