#stupendouspineapple

1 messages · Page 1 of 1 (latest)

frank bladeBOT
devout sphinx
#

This is currently just using the test mode version

frail crescent
#

Hi, let me help you with this.

#

Are you not able to pass through at all?

devout sphinx
#

Nope, and the other developer working on this started having the same issue last week

#

It was working for me until today

frail crescent
#

This doesn't look right. Let me check.

golden crown
#

just click the "test phone number" link instead of entering a real number.

devout sphinx
#

Hi @golden crown, I tried that, but have the same issue. The captcha shows and then I'm redirected back to the same screen

golden crown
#

hmm strange. Try using an incognito window.

#

is this Express or Custom? What code do you use to create the AccountLink?

devout sphinx
#

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;
golden crown
#

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

frank bladeBOT
golden crown
#

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