Пытаюсь отправить обычный POST с Node/Express и получаю ответ:
No 'Access-Control-Allow-Origin' header is present on the requested resource.
const https = require('https');
const options = {
hostname: 'connect.stripe.com',
port: 443,
path: '/oauth/token',
method: 'POST',
headers: { 'Content-Type': 'application/x-www-form-urlencoded' }
}
const req = https.request(
options, res =>
res.on('data', d =>
process.stdout.write(d))
)
req.write(data) // client_secret=stripe_sk&grant_type=authorization_code...
req.end()
Могут ли еще какие-то заголовки вмешиваться на уровне Экспресса?
Из Postman отлично все обменивается.
Подскажите пожалуйста куда копать?