似乎所有出站请求(例如http.request(…)
,restify.post(…)
)发送到https://
网址由于某种原因转换为http://
(OpenShift代理?)。如何调用外部API并确保我点击HTTPS URL而不是HTTP URL?
这是一个具体的例子。当我从localhost
运行时,对StubHub API的调用非常有效,但是只要我在OpenShift或Heroku NodeJS容器/ dyno中运行它,我就会被迫http://api.stubhub.com/
并因此得到一个错误
var express = require('express'),
server = express(),
fetch = require('node-fetch')
qs = require('qs');
// api
var api = express.Router();
server.use('/api/v1', api);
api.post('/login', function (req, res) {
fetch('https://api.stubhub.com/login', {
method: 'POST',
headers: {
Authorization: 'Basic <TOKEN>',
'Content-Type': 'application/x-www-form-urlencoded',
},
body: qs.stringify({
grant_type: 'password',
username: req.query.username,
password: req.query.password,
scope: 'PRODUCTION',
}),
})
.then(function (response) {
res.send(response.json());
});
});
// server
server.listen(process.env.NODE_PORT || 3030, process.env.NODE_IP || 'localhost');