All Questions
Tagged with stripe-payments java
274 questions
0
votes
1
answer
51
views
Stripe subscription not updating to ACTIVE after payment
I have java+react app. Want to implement fixed price subscriptions. I did follow this sample github but looks like Im missing something.
After customer entered card I can see payment processed in ...
-1
votes
1
answer
31
views
Stripe Payment Intent implementation [closed]
My project stack setup is Frontend(ReactJS + NextJS) and backend(Java).
We want to work on adding stripe checkout for payment.
After checking the official documentation, we found out that we can ...
-1
votes
1
answer
68
views
Stripe payment api sending an OPTIONS request instead of a POST
const appearance = {
theme: 'night',
};
const stripe = Stripe('pk_test_51PccgFRo1v56iAOxEVEimciGkyyLOcjVE98T3rqOHLuvx28QNxI8sfvYN0zwSka8vLRIIIEdkOHorjb5OJUdwhIx00VRs64Seu');
// Set up Stripe ...
0
votes
0
answers
57
views
Run function when Stripe Checkout is successful JavaFx
I have a javafx project, and I have implemented Stripe as a payment gateway. So, I want to make an update if the payment succeeds, but without using a URL, which means without endpoint restful, ...
-1
votes
1
answer
151
views
Stripe SetupIntent automatic payment method shows SEPA for USD connected account
While upgrading our Stripe API Version (and thus also our java library version) i wanted to make use of the newly added automatic_payment_method field for SetupIntents we use with for connected ...
-1
votes
1
answer
141
views
java-stripe version 26.0.0 is not able to deserializer event with api-version 2023-10-16
Using java-stripe version
implementation("com.stripe:stripe-java:26.0.0")
{
"id": "evt_3PY5cgCeh1qdQtxa0SIqAQDf",
"object": "event",
"...
-1
votes
2
answers
159
views
How can I retrieve product metadata from a session after completing checkout with Stripe in a Spring Boot application?
Using the Stripe SDK in Spring Boot, after creating a session and adding your product data, you have the option to use putAllMetadata, which accepts a map of <String, String>. The purpose of ...
0
votes
1
answer
46
views
Stripe SDK Java - Create Customer
I'm trying to create a new Stripe Customer with the Java Stripe SDK.
Unfortunately the .setAddress() function inside the CustomerCreateParams.Builder() is not working.
I'm trying to figure out how to ...
0
votes
1
answer
399
views
Prefill and Allow Editing of Email Field in Stripe Checkout Session
I'm using Stripe Embedded Checkout for handling payments in my application. I want to prefill the email field in the Checkout form with a suggested email address, but still allow the user to edit it. ...
0
votes
1
answer
98
views
Charging with Stripe using my own subscription model
I am building a tool which has it's own variable subscription model. The charges could be weekly, monthly, yearly or something in between depending on the services they choose. I am looking for a ...
0
votes
1
answer
146
views
com.stripe.exception.RateLimitException overcome
I write some custom logic for update subscription in my project but at some point have began to receive error:
com.stripe.exception.RateLimitException: You are updating the subscription too frequently....
2
votes
1
answer
598
views
Inconsistent JVM-target compatibility detected
I need to launch a small delivery App from Visual Studio Code(using own physical device), flutter run throws me this error:
Launching lib\main.dart on TECNO KJ5 in debug mode...
Building with Flutter ...
-2
votes
1
answer
58
views
Stripe processing doesn't work in my java script file
I'm trying to use a Java script for payment but something is wrong and I get the following errors in the browser console:
checkout.js:26
POST http://localhost:8080/create-payment-intent 405 (Method ...
-1
votes
1
answer
282
views
Stripe Webhook Custom Header [closed]
I am working on a project where we create Payment link using Stripe and share the link to the customer.
Once the customer made the payment we use Stripe webhook to check the payment status. and we are ...
0
votes
1
answer
265
views
How to access the charge on a Stripe webhook response
I am always getting an error when accessing the charge event on a Stripe webhook. This is my webhook endpoint:
@PostMapping("/webhook")
public ResponseEntity<String> ...