Jyothirmayi Kesireddy

Results 17 comments of Jyothirmayi Kesireddy

Can somebody found the solution? :'(

Hi @itrestian I understood it but sample app/doc will make me bit more clear. Can you please provide that?

@itrestian I tried custom auth flow.But getting error: Incorrect username or password. My code is below. ``` `let authenticationData = { Username: username, Password: '' }; let authenticationDetails = new...

I tried that but I am getting error like "Property 'initiateAuth' does not exist on type 'CognitoUser'. @itrestian I am using same lambda functions form tim's video.

I am using 1.28.0 version. Is it something issue from lambda function? I am using same lambda functions form tim's video.

My lambda functions. DefineAuth: ``` `exports.handler = (event, context, callback) => { // TODO implement console.log("In lambda"); //callback(null, 'Hello from Lambda'); if(event.request.session.length === 0){ event.response.issueTokens = false; event.response.failAuthentication = false;...

What does it mean? I am using angular4 with Typescript

`declare module "amazon-cognito-identity-js" { import * as AWS from "aws-sdk"; export type NodeCallback = (err?: E, result?: T) => void; export interface IAuthenticationDetailsData { Username: string; Password: string; } export...

I added some thing like below in index.d.ts file. Now my error is Unreconizable lambda output. `public initiateAuth(authenticationDetails: AuthenticationDetails, callbacks: { onSuccess: (session: CognitoUserSession, userConfirmationNecessary?: boolean) => void, onFailure: (err:...