获取授权标头React Native

时间:2018-03-20 10:03:08

标签: react-native

如果我从邮递员那里发送授权标题,那么它正在运行,但不是通过代码。

邮递员:

接头:

Key: Authorization
Value: Basic

授权:

Username: test
Password: test

PostMan结果:

Successful Response

React Native Code:

结果:

  

错误:请提供api的登录凭据。

     fetch(URL, {
          method: 'POST',
          Headers: {
            'Accept': 'application/json',
            'Authorization': 'Basic', 
            Authorization:{
              'Username':'test',
              'Password':'test',
            },
            'Content-Type': 'application/x-www-form-urlencoded'
          },
          body: JSON.stringify({
          })
        })
    .then((response) =>  response.json())
    .then((responsenew) =>  
    {
});

0 个答案:

没有答案