我正在尝试使用位于https://api.mmitnetwork.com
的api获取一些RESTful服务如果我发出GET请求,则会给我一个401错误的Unathorized。为了使用他们的api进行身份验证,我想使用
对https://api.mmitnetwork.com/Token进行POST{“grant_type”:“password”,“username”:“yourusername”,“password”:“yourpassword”}
身体中的获得一个令牌。
我如何反应?
答案 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 :(')
})