我正在调用一个在Windows平台上使用邮递员的远程API,但同样不适用于邮递员的IOS平台。
我必须在React-Native中调用该API,但我收到错误Network Request failed on IOS
。
我已经开发了节点Js调用,它也在这里工作,但我必须提交这两个参数,这些是
rejectUnauthorized: false,
requestCert: true,
这是我的代码,它在NODE.JS中运行,但在React-Native中没有。
var r = request.post('HTTPS://{HOST}/oauth2-api/p/v1/token?scope=TMO_ID_profile associated_billing_accounts associated_customers associated_lines billing_information offer' +
'&grant_type=client_credentials', {
headers: {
'Content-Type': 'application/x-www-form-urlencoded',
'Authorization': '{BASIC BASE 64}'
},
rejectUnauthorized: false,
requestCert: true,
},
function optionalCallback(err, httpResponse, body) {
if (err) {
return console.error(' failed:', err);
}
console.log(' Server responded with:', JSON.parse(body));
requestaccess(JSON.parse(body).token_type + " " + JSON.parse(body).access_token);
});
唯一关心的是这两者的替代方案
rejectUnauthorized: false,
requestCert: true,
在React-Native?