在反应中使用令牌进行身份验证

时间:2016-12-14 20:56:32

标签: rest authentication reactjs

我正在尝试使用位于https://api.mmitnetwork.com

的api获取一些RESTful服务

如果我发出GET请求,则会给我一个401错误的Unathorized。为了使用他们的api进行身份验证,我想使用

https://api.mmitnetwork.com/Token进行POST

{“grant_type”:“password”,“username”:“yourusername”,“password”:“yourpassword”}

身体中的

获得一个令牌。

我如何反应?

1 个答案:

答案 0 :(得分:0)

您可以使用axios:https://github.com/mzabriskie/axios

axios.post(' https://api.mmitnetwork.com/Token', {
    grant_type: 'password',
    username: 'yourusername',
    password: 'yourpassword',
}).then((response) => {
    console.log('success!')
}).catch((error) => {
   console.log('something went wrong :(')
})