我正在尝试在我的 Javascript React 应用程序中使用 Axios 发出一个简单的 GET 请求。此请求与 Postman 完美配合,但我无法使用 Axios。
我尝试了几种不同的代码变体,但都不起作用。这是最简单的版本:
import React, { useEffect } from 'react';
import { Auth } from 'aws-amplify';
useEffect(() => {
const fetchRoles = async () => {
var authToken;
Auth.currentSession()
.then(data => {
authToken = data.getAccessToken().getJwtToken();
})
.catch(err => console.log(err));
var config = {
headers: { Authorization: "Bearer " + authToken}
};
var bodyParameters = {
key: "value"
};
axios.get("http://127.0.0.1:5000/accounts/roles", bodyParameters, config)
.then(response => {
console.log(response);
})
.catch(error => {
console.log(error);
});
fetchRoles();
}
我每次得到的错误是:
127.0.0.1 - - [19/Aug/2019 14:12:27] "GET /account_management/roles HTTP/1.1" 401 -
Exception getting user An error occurred (InvalidParameterException) when calling the GetUser operation: 1 validation error detected: Value at 'accessToken' failed to satisfy constraint: Member must satisfy regular expression pattern: [A-Za-z0-9-_=.]+
我不明白这个错误,因为我已经根据这个 RegEx 表达式检查了 Auth Token 并且它是有效的。
萧十郎
相关分类