Closed akashbiz closed 6 years ago
I followed this[https://github.com/aws/amazon-cognito-js/issues/40] link to create cognitoSyncManager object import as AWS from "aws-sdk/global"; import as CognitoSync from "aws-sdk/clients/cognitosync"; import { CognitoSyncManager } from 'amazon-cognito-js';
this.cognitoSyncManager = new AWS.CognitoSyncManager()
Error: Property 'CognitoSyncManager' does not exist on type 'typeof ".../node_modules/aws-sdk/global"'.
AWS.config object: { "credentials": { "expired": true, "expireTime": null, "params": { "IdentityPoolId": "IDENTITY_POOL_ID", "Logins": { "cognito-idp.us-east-1.amazonaws.com/USER_POOL_ID": "accessToken" } }, "data": null, "_identityId": null, "_clientConfig": {} }, "credentialProvider": null, "region": "us-east-1", "logger": null, "apiVersions": {}, "apiVersion": null, "httpOptions": { "timeout": 120000 }, "maxRedirects": 10, "paramValidation": true, "sslEnabled": true, "s3ForcePathStyle": false, "s3BucketEndpoint": false, "s3DisableBodySigning": true, "computeChecksums": true, "convertResponseTypes": true, "correctClockSkew": false, "customUserAgent": null, "dynamoDbCrc32": true, "systemClockOffset": 0, "signatureVersion": null, "signatureCache": true, "retryDelayOptions": {}, "useAccelerateEndpoint": false }
AWS.config.credentials object: { "expired": true, "expireTime": null, "params": { "IdentityPoolId": "IDENTITY_POOL_ID", "Logins": { "cognito-idp.us-east-1.amazonaws.com/USER_POOL_ID": "idToken" } }, "data": null, "_identityId": null, "_clientConfig": {} }
Also, when I am trying to copy identityId from credentials object in following way let identityID = AWS.config.credentials.identityId; and encounter an issue saying Property 'identityId' does not exist on type 'Credentials | CredentialsOptions'. Property 'identityId' does not exist on type 'Credentials'.
Hi @akashbiz ,
I'd recommend you post your questions on stackoverflow, unless it's specific to this project (I haven't used Cognito Sync in this project).
Thanks, Vladimir
Hi, I am importing this library via npm and used Angular2 Cognito Quickstart for reference but I also need to use cognitosync library which get called immediately after login. Below is the code I am trying for which I am facing many issues
---------cognito.service.ts--------- ` import { AuthenticationDetails, CognitoIdentityServiceProvider, CognitoUser, CognitoUserAttribute, CognitoUserPool } from "amazon-cognito-identity-js"; import as AWS from "aws-sdk/global"; import as STS from "aws-sdk/clients/sts"; import as awsservice from "aws-sdk/lib/service"; import as CognitoIdentity from "aws-sdk/clients/cognitoidentity";
buildCognitoCreds( idTokenJwt: string ) { let url = 'cognito-idp.' + Environment.REGION.toLowerCase() + '.amazonaws.com/' + Environment.USER_POOL_ID; if ( Environment.COGNITO_IDP_ENDPOINT ) { url = Environment.COGNITO_IDP_ENDPOINT + '/' + Environment.USER_POOL_ID; } let logins: CognitoIdentity.LoginsMap = {}; logins[url] = idTokenJwt; let params = { IdentityPoolId: Environment.IDENTITY_POOL_ID, Logins: logins }; let serviceConfigs: awsservice.ServiceConfigurationOptions = {}; if ( Environment.COGNITO_IDENTITY_ENDPOINT ) { serviceConfigs.endpoint = Environment.COGNITO_IDENTITY_ENDPOINT; } let creds = new AWS.CognitoIdentityCredentials( params, serviceConfigs ); this.setCognitoCreds( creds ); return creds; }
authenticate( username: string, password: string ): Promise {
}`
---------cognito-sync.service--------- `import as AWS from "aws-sdk/global"; import as CognitoSync from "aws-sdk/clients/cognitosync"; import { CognitoSyncManager } from 'amazon-cognito-js';
initSync(): void { this.cognitosync = new CognitoSync( { correctClockSkew: true } ); this.cognitoSyncManager = new AWS.CognitoSyncManager(); // 3rd issue }
Please help.