私は、AWS CognitoとAWSユーザープールを使用して、新しいユーザーの作成、パスワードの変更などを行うために、thisガイドに従っています。私はAndroid/iOS用の適切なXamarin SDKを見つけることができません。存在するものはありますか?AWS Cognito for Xamarin
具体的には、Cognito User Poolオブジェクトを作成する際に問題が発生しています。私がリンクしたサンプルでは、次のようになります。
CognitoUserPool userPool = new CognitoUserPool(context, userPoolId, clientId, clientSecret);
// user pool can also be created with client app configuration:
CognitoUserPool userPool = new CognitoUserPool(context, userPoolId, clientId, clientSecret, clientConfiguration);
CognitoUserPool
クラスはありません。 AWSSDK.CognitoIdentity
ライブラリで類似しているか、または同様のコンストラクタなどを見つけられません。何か不足しているのですか、これはまだサポートされていませんか?
Register a new user
サンプルコードから
SignUpHandler
クラスに似た何かを見つけることができません
は、ここに示す:。
// create a handler for registration
SignUpHandler handler = new SignUpHandler() {
@Override
public void onSuccess(CognitoUser user, boolean signUpConfirmation) {
// The sign up was successful, "user" is a CognitoUser object of the user who was signed up.
// "signUpConfirmation" will indicate if user is already confirmed.
}
@override
public void onFailure(Exception exception) {
// Sign up failed, code check the exception for cause and perform remedial actions.
}
}
それは残念です。すぐにXamarin SDKをアップデートする予定です。 –
これはまだですか?あなたがこれを投稿してから約4ヶ月です。 –