All Questions
45 questions
0
votes
0
answers
158
views
Stripe create multiple subscriptions with different intervals on a single authentication
Working with PHP language and integrating Stripe on my website. There are two plans on my site.
75$ - per year.
6$ - per month (kinda add-on that allows you to have more functionality)
The algorithm ...
0
votes
0
answers
759
views
How to proceed Stripe payment directly in the PHP backend?
My client has an online store using Stripe as a payment method. The online store is 100% custom (no WordPress/Shopify/Magento/Lavarel/React) - only PHP, MySQL, HTML, CSS, and JS.
Firstly, I integrate ...
1
vote
2
answers
604
views
Invalid array or Invalid integer in using Stripe "unit_amount"
I have a problem when I want to integer Stripe on my project in Symfony.
I use Stripe v.9.5.0 and I have different errors when I implement "unit_amount" for Stripe
I have an OrderController:
...
2
votes
2
answers
1k
views
Payment request button via Stripe does not work when add shipping address
I am using stripe to add the Payment request button(Apple, Google, Pay Now) by following the documentation https://stripe.com/docs/stripe-js/elements/payment-request-button
which is working fine but I ...
0
votes
1
answer
253
views
Correct use of webhooks to assure payment integrity
I'm new to webhooks and am not really getting the hang of some points of it. KISS; the current problem is, think about:
a platform
that provides a service X
to book a service X, customer Y has to pay ...
1
vote
2
answers
3k
views
Create an invoice for stripe payments
I'm using Stripe for one-time payments and subscriptions.
To create a payment, I use Stripe Checkout:
\Stripe\Checkout\Session::create([
'customer' => 'cus_XXXXX',
'success_url' => '',
...
2
votes
1
answer
1k
views
(Stripe) Does the current_period_end update when payment problems occur?
I'm creating a subscription plan, in PHP and I'm using Stripe as a subscription "manager". I have a trivial question to do: in the Stripe subscription object, there's on parameter called ...
1
vote
1
answer
2k
views
how to apply coupon in stripe for particular product (plan)? POST details: $request->plan price id , $coupon => coupon id $card['id'] => card token
I am added a coupon for abc product, while create subscription i can apply that coupon for all
products. I want it can apply to only abc product. i m using
https://cartalyst.com/manual/stripe/2.0#...
0
votes
0
answers
197
views
Stripe 3d secure token to customer and then charge
I try to figure out Stripe's system.
This is what I am trying now:
Generate a 3D Secure token with the payment of 49.00 EUR.
When I receive the token back (successfully) I create the customer with &...
1
vote
0
answers
344
views
How to charge different amount and not actual authorize amount through stripe?
I have used woocommerce stripe payment gateway for woocommerce to capture and process payment.
The order amount becomes authorize amount for later payment and not immediate capture through stripe when ...
1
vote
1
answer
1k
views
Stripe saying 'Payment not completed' Stripe connect php
When transferring money to a connected account on Stripe using this code
// // Create a PaymentIntent:
$method = \Stripe\PaymentMethod::create([
'type' => 'card',
'card' => [
'number' =&...
1
vote
1
answer
72
views
Is it possible to get the deposit history using Stripe?
I want to use the Stripe API from the application server that is currently being developed to acquire deposit history data.
If there is no such API, is it possible to detect the deposit with a webhook ...
13
votes
2
answers
4k
views
Stripe Payment request button with subscriptions
I have really tired looking for the information i need and hope for your help.
Also, i have written to Stripe support, but for now the communication with them is very difficult.
Let's start at the ...
0
votes
0
answers
226
views
how do i make a webhook for the javascript ideal payment from stripe
im kinda new to programming with this advanced stuff but i wanna learn. i hope you can help me to get it working so not when people cancel the payment and still get ther stuff.
i want to know how to ...
3
votes
2
answers
3k
views
Stripe: handle multiple Webhooks
I'm working on a project which has two types of products: subscriptions and event registration.
I'm using Stripe Checkout Session for both. As their process is different, I'm using two webhooks; one ...