You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When users start the Stripe Identity flow, they are prompted to agree to the privacy policy. If a user clicks "DECLINE" a message appears asking the user to agree, and then the user is redirected to the consent page again.
Unfortunately, as an app developer, we have no way to educate the user about the benefits of identity verification or the privacy policy at this point.
Hence the following feature request:
When the user clicks "DECLINE", the Stripe Identity activity should finish and the callback should include a Rejected type in addition to the Canceled, Completed, and Failed results. This would give app developers the ability to react here and display their own screen.
Example:
val identityVerificationSheet = rememberIdentityVerificationSheet(
configuration =IdentityVerificationSheet.Configuration(brandLogo = logoUri),
identityVerificationCallback = {
when (it) {
isIdentityVerificationSheet.VerificationFlowResult.Canceled-> {
}
isIdentityVerificationSheet.VerificationFlowResult.Completed-> {
}
isIdentityVerificationSheet.VerificationFlowResult.Failed-> {
}
isIdentityVerificationSheet.VerificationFlowResult.Rejected-> {
// This is my Feature Request.// Show the user a screen explaining why consent is necessary.
}
}
},
)
The text was updated successfully, but these errors were encountered:
When users start the Stripe Identity flow, they are prompted to agree to the privacy policy. If a user clicks "DECLINE" a message appears asking the user to agree, and then the user is redirected to the consent page again.
Unfortunately, as an app developer, we have no way to educate the user about the benefits of identity verification or the privacy policy at this point.
Hence the following feature request:
When the user clicks "DECLINE", the Stripe Identity activity should finish and the callback should include a
Rejected
type in addition to theCanceled
,Completed
, andFailed
results. This would give app developers the ability to react here and display their own screen.Example:
The text was updated successfully, but these errors were encountered: