skip to Main Content

Amazon web services – ECS Service can't obtain configuration from Cognito

I have a .NET application which has AddAuthentication() and UseAuthentication() for my application. Users are authenticated using Cognito. services .AddAuthentication(options => { options.DefaultScheme = JwtBearerDefaults.AuthenticationScheme; options.DefaultChallengeScheme = JwtBearerDefaults.AuthenticationScheme; }) .AddJwtBearer(options => { options.RequireHttpsMetadata = true; options.MapInboundClaims = false; options.Authority =…

VIEW QUESTION

Can AWS Amplify UI React get AWS Cognito tokens?

Im currently working in a Next.js frontend and NestJS backend application and im setting the login component with the @aws-amplify/ui-react: like in the documentation https://docs.amplify.aws/lib/auth/getting-started/q/platform/js/#option-1-use-pre-built-ui-components import { Amplify } from 'aws-amplify'; import { withAuthenticator } from '@aws-amplify/ui-react'; import '@aws-amplify/ui-react/styles.css'; import…

VIEW QUESTION
Back To Top
Search