#stupendouspineapple
1 messages · Page 1 of 1 (latest)
Nope, and the other developer working on this started having the same issue last week
It was working for me until today
This doesn't look right. Let me check.
just click the "test phone number" link instead of entering a real number.
Hi @golden crown, I tried that, but have the same issue. The captcha shows and then I'm redirected back to the same screen
hmm strange. Try using an incognito window.
is this Express or Custom? What code do you use to create the AccountLink?
This is Express
Account account;
if (string.IsNullOrWhiteSpace(clinician.StripeAccountId))
{
account = await new Stripe.AccountService()
.CreateAsync(new AccountCreateOptions
{
Type = "express",
Country = "GB",
Email = clinicianEmail,
Settings = new AccountSettingsOptions
{
Payouts = new AccountSettingsPayoutsOptions
{
Schedule = new AccountSettingsPayoutsScheduleOptions
{
Interval = "manual", // we will manually trigger the payout when the report is finalised
}
}
},
Capabilities = new AccountCapabilitiesOptions
{
Transfers = new AccountCapabilitiesTransfersOptions
{
Requested = true
},
// [KW]: To disable card payment capability requests needs approval by Stripe themselves.
CardPayments = new AccountCapabilitiesCardPaymentsOptions
{
Requested = true
}
}
});
clinician.StripeAccountId = account.Id;
await db.SaveChangesAsync();
}
else
{
account = await new Stripe.AccountService()
.GetAsync(clinician.StripeAccountId);
}
AccountLink accountLink = await new AccountLinkService()
.CreateAsync(new AccountLinkCreateOptions
{
Account = account.Id,
RefreshUrl = $"{SharedConfig.Instance.AppUrl}{PageRoutes.Clinician.Onboarding}",
ReturnUrl = $"{SharedConfig.Instance.AppUrl}{PageRoutes.Clinician.Onboarding}",
Type = "account_onboarding",
});
return accountLink.Url;
I tried a Express+AccountLink + the test phone number flow on my account just now and there's no captcha at least, you just click "test phone number" and then the button for "use test code" for the OTP
so yeah I'd try a different browser/fresh profile/incognito window so that you have a fresh environment and we hopefully don't ask for a Captcha
if you continue to have issues please write to https://support.stripe.com/?contact=true so we can investigate with access to your account and context