Изучал документацию по Amplify, чтобы настроить размещенный в AWS Cognito пользовательский интерфейс в Angular 6.
Получение 400 неверных запросов после входа в систему.
Ниже приведена информация:
- In main.ts AWS Amplify настроен.
Amplify.configure({
Auth: {
region: 'us-east-1',
userPoolId: 'us-east-1_XXXX',
userPoolWebClientId: 'CLIENT_ID',
oauth: {
domain: 'IDP.auth.us-east-1.amazoncognito.com',
scope: ['openid'],
redirectSignIn: 'http://localhost:4200/',
redirectSignOut: 'http://localhost:4200/',
responseType: 'code',
options: {
AdvancedSecurityDataCollectionFlag: true
}
}
}
});
- В app-component.ts :
import { Auth} from 'aws-amplify';
onLoginClick() {
Auth.federatedSignIn();
}
- Хромированная консоль logs.
- Вкладка «Сеть».