如何在Windows应用程序(WinForm)C#中从Cognito获取用户令牌。提前感谢。
我试
Amazon.CognitoIdentityProvider.AmazonCognitoIdentityProviderClient provider = new Amazon.CognitoIdentityProvider.AmazonCognitoIdentityProviderClient(
new Amazon.Runtime.AnonymousAWSCredentials(), Amazon.RegionEndpoint.USEast1);
userPool = new CognitoUserPool("", "", provider)
字符串
1条答案
按热度按时间ctehm74n1#
有一个C# example in the AWS SDK Code Examples library演示了如何使用用户池。您可以克隆存储库并自己运行该示例。那里有一个Admin Login部分,与您进行用户(非admin)登录时所需的内容类似。此设置使用了一个auth challenge,如果您不使用该选项,则可以忽略该选项。
字符串