如何做出具有授权的本地请求?

时间:2018-10-06 10:39:05

标签: react-native yii2 request

在我工作的公司中,我正在制作一个连接到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);
});

0 个答案:

没有答案