#Sophia123

1 messages · Page 1 of 1 (latest)

crimson anvilBOT
pulsar nimbus
#

Can you share the payment intent id associated with the above messages?

queen hamlet
#

I have setup intent id = seti_1MzLgH2eAB6s7U3SXtPK07F1. I'm trying to save a payment instrument without a purchase

pulsar nimbus
#

Ok thanks

#

Are you using the payment intent? Can you share a code snippet for how you're intializing stripe?

queen hamlet
#

in this case I don't use payment intent

pulsar nimbus
#

Sorry payment element

#

That's what I meant to type

#

So what I meant was:

queen hamlet
#

I just create a setup intent and it works for card and Sepa
final SetupIntentCreateParams.Builder builder = SetupIntentCreateParams.builder();
if (StringUtils.isNotEmpty(customerId)) {
builder.setCustomer(customerId);
}
if (paymentMethods != null && !paymentMethods.isEmpty()) {
builder.addAllPaymentMethodType(paymentMethods);
}
builder.setUsage(SetupIntentCreateParams.Usage.OFF_SESSION);
builder.putAllMetadata(metadata.toMap());
SetupIntentCreateParams setupIntentCreateParams = builder.build();
SetupIntent setupIntent = invoke("createSetupIntent", trackingId, setupIntentCreateParams, SetupIntent::create);

pulsar nimbus
#

No I'm asking specifically about the front end part of this

#

This is a connect scenario, so wondering how you're initializing stripe

#

Or are you using Checkout?

crimson anvilBOT
queen hamlet
#

const defer = $q.defer();
this.initStripe();

const appearance = getStripeAppearance();
elements = stripe.elements({appearance, clientSecret});

this.initStripe = () => {
const locale = lang.getLanguageTag();
let params = {
locale: locale,
};
if (accountId) {
params.stripeAccount = accountId;
}
stripe = Stripe(apiKey, params);
}

vernal patio
#

can you remove

and try and see if you get the same warning log line?

#

@queen hamlet ^ ?

queen hamlet
#

yes, I try

#

I still get warnings

vernal patio
#

can you share the SetupIntent ID for the one you just created?

queen hamlet
#

seti_1MzMeq2eAB6s7U3SwpLpeaXB

vernal patio
#

thanks, looking

#

hmm you're making a Connect request

#

I didn't catch that earlier

#

i.e. your platform is asking to create a SetupIntent on your connected accounts

#

can you check the PaymentMethod settings on the Dashboard of the connected account

it is the one named Don't delete

#

for the ...test02 email

queen hamlet
#

I don't have only Bancontact

vernal patio
#

checking

#

@queen hamlet and to clarify, do you still see the two PaymentMethods on PaymentElement? despite the warning?

queen hamlet
#

I see this

vernal patio
#

ah got it, looking

crimson anvilBOT
wind stratus
#

Hello! I'm taking over and catching up...

#

So is the issue that you want ideal, bancontact, and sofort enabled in live mode?

queen hamlet
#

in test mode

wind stratus
#

They're already working in test mode, aren't they? They're showing up in the Payment Element.

#

In your screenshot I mean.

queen hamlet
#

Ok, also I see this error, I think it can affect to me. Can you describe why I get this?

#

this is after redirect

wind stratus
#

A 429 status code indicates you're being rate limited because you're making too many requests.

#

Do you have a script or process running that's making a lot of requests?