はジェフで推薦しlinkを使用して完全なサンプルです:
CognitoUserAttributes attributes = new CognitoUserAttributes();
attributes.addAttribute("phone_number","+15555555555");
attributes.addAttribute("email","[email protected]");
cognitoUserPool.signUp('username', 'password', attributes, null, new SignUpHandler() {
@Override
public void onSuccess(CognitoUser cognitoUser, boolean b, CognitoUserCodeDeliveryDetails cognitoUserCodeDeliveryDetails) {
// If the sign up was successful, "user" is a CognitoUser object of the user who was signed up.
// "codeDeliveryDetails" will contain details about where the confirmation codes will be delivered.
}
@Override
public void onFailure(Exception e) {
// Sign up failed, code check the exception for cause and perform remedial actions.
}
});
モバイルSDKでユーザープールの使い方のセクション例Android用は古くなっているようです。
他の人を助けることを望みます。)
こんにちはジェフがあなたの答えに感謝します。このサンプルは、ステップ3:アプリケーションへのユーザーのサインアップにあります。 –