我正在嘗試註冊一個使用用戶池的用戶,並在我的lambda中使用並修改了示例here中的代碼。如何在Node.js Lambda中使用AWS用戶池功能?
我引用AWS以正常方式:
var AWS = require('aws-sdk');
,並試圖引用現有的用戶羣:
AWS.config.region = 'eu-east-1';
var poolData = {
UserPoolId : 'eu-west-1_xxxxxxx',
ClientId : 'xxxxxxx'
};
var userPool = AWS.CognitoIdentityServiceProvider.CognitoUserPool(poolData);
,但我得到了以下錯誤:
TypeError: AWS.CognitoIdentityServiceProvider.CognitoUserPool is not a function
上午我使用錯誤的SDK? the setup page解釋了aws-cognito-sdk.min.js是完整SDK的變體,但僅引用了Cognito Identity Service,因此我認爲完整的SDK也將允許我訪問它... 任何想法?
完美的一杆解答。我正在尋找一個這樣的簡單例子超過3到4個小時,直到我找到這個。 – user3227262
您好,我正在嘗試使用JS的純SDK來執行Cognito請求,但我看過的示例使用了認知身份SDK。你能告訴我,如果你發現任何材料,並在哪裏,以得到你的答案?謝謝。 –