在我工作的公司中,我正在制作一个连接到Yii2 rest api的react-native应用程序,但是当我在家工作时,我需要进行授权,但是我不知道如何添加此授权以进行请求,这甚至都没有什么也不返回。
这是我的要求:
fetch('https://blablablah.com/rest/api',{
method:'POST',
headers:new Headers({
'Authorization': 'Basic '+btoa('name:password'),
'Content-Type': 'application/x-www-form-urlencoded'
}),
body: JSON.stringify({
AppLogin:{
email:this.state.email,
password:this.state.password
}
})
}).then((response) => response.json())
.then((responseJson) => {
console.warn(responseJson);
});