stripe-payments Questions
5
Stripe .net "The signature for the webhook is not present in the Stripe-Signature header."
I am using Stripe.net SDK from NuGet. I always get the
The signature for the webhook is not present in the Stripe-Signature header.
exception from the StripeEventUtility.ConstructEvent method.
[H...
Numbing asked 27/9, 2017 at 15:14
1
Since 10th April, Stripe has mandated that non-Stripe domains sending email receipts must have DMARC enabled, following in the footsteps of Google and Yahoo:
To comply with this we implemented a D...
Donitadonjon asked 18/4, 2024 at 17:19
6
How to change the text in a stripe checkout modal box from PAY to something else.
I know I can do custom text on the button that pops up the modal.
description: 'ADD CARD',
label:'ADD CARD',
Bu...
Dowse asked 14/2, 2017 at 22:53
3
Solved
In Rails, I'm attempting to implement a controller action which will allow a customer to change the plan they are subscribed to. Per the Stripe documentation, this can be done as follows:
customer...
Externalize asked 15/12, 2014 at 20:31
7
Solved
I'm trying to write unit tests for Stripe webhooks. The problem is I'm also verifying the stripe-signature and it fails as expected.
Is there a way to pass a correct signature in tests to the webho...
Nadabas asked 15/12, 2020 at 13:20
24
Solved
I have a stripe webhook that call a Firebase function. In this function I need to verify that this request comes from Stripe servers. Here is the code :
const functions = require('firebase-function...
Agriculture asked 22/12, 2018 at 21:17
2
Solved
I am trying to test a scenario where the user's card has insufficient funds.
Following the docs at https://stripe.com/docs/testing - the cardnumber 4000 0000 0000 0002 should yield such an error. ...
Nildanile asked 29/6, 2018 at 10:33
37
Solved
In Stripe, my client wants email and cardholder name, but the Stripe payment UI doesn't provide that option in com.stripe.android.view.CardMultilineWidget. I wanted to give it a try with the latest...
Savior asked 26/5, 2021 at 6:45
2
Is there a timeout for a customer to make their payment and can it be changed ?
Let me explain my situation :
I have to add the payment on a PHP booking platform.
To ensure that a time slot is not ...
Annalisaannalise asked 8/7, 2020 at 14:52
3
Solved
I use Stripes' webhooks and want to get notified, if the customer successfully "paid the bill". I came across two webhooks, which in my opinion both could do the job:
Webhook "invoi...
Establishmentarian asked 12/11, 2020 at 18:35
3
Solved
I am using stripe implementation with Node JS by following this API. I am able to create connect and account but I can't add external bank account for the connected stripe account. I am using Test ...
Lithology asked 3/1, 2022 at 10:44
25
Solved
I am trying to send an API request using Stripe but get the error message:
cURL error 60: SSL certificate problem: unable to get local issuer certificate
This is the code I am running:
public fun...
Chessa asked 23/4, 2015 at 11:54
12
I am creating a payment gateway using Stripe.
I want to set my localhost url localhost/stripe/webhook.php as my webhook url. Is it possible to set a localhost address as a webhook url? This will b...
Crossman asked 12/3, 2013 at 9:21
2
I'm a bit confused about the correct way to implement Stripe PaymentElement in a React app.
On one hand, Stripe suggests to
Render an Elements provider at the root of your React app so that it
is ...
Carollcarolle asked 24/2, 2023 at 20:27
4
Solved
I have successfully built out a rails app as per Ryan Bates' railscast (http://railscasts.com/episodes/288-billing-with-stripe) - However, in the railscast he doesn't cover webhooks. I was wonderin...
Diaspora asked 21/2, 2012 at 3:5
3
Solved
I have stripe check out with php. It creates customers and charges them. I want to create a donation form where if same customer comes back and gives with same email address that Stripe doesn't cre...
Miyamoto asked 15/10, 2014 at 21:57
4
I'm new to Stripe, so if I'm missing something, please advise.
Tech Stack:
React (front-end)
Node (back-end)
I am trying to create or update a Stripe subscription, and in either case, I get a null ...
Hescock asked 9/9, 2020 at 6:7
2
I'm struggling to get Stripe to work on my server.
So, on the client side, I have this code (after much struggle to get element working) :
this.props.stripe.createPaymentMethod({ type: 'card', card...
Ravenravening asked 23/6, 2020 at 11:24
1
I'm currently trying to use Laravel Cashier to handle Billing inside a React application. When using a test card that requires 3D secure (pulled directly from Stripes Documentation) (40000000000032...
Brittni asked 19/11, 2019 at 19:51
3
Testing my stripe js account on test mode. I'm running this piece of code
Stripe.card.createToken({
number: "4242424242424242",
cvc: "333",
exp_month: "02",
exp_year: "19",
address_zip: "...
Courtroom asked 5/9, 2015 at 3:18
3
Solved
When we make a stripe checkout session we include a success url:
session = await this.stripe.checkout.sessions.create({
payment_method_types: ['card'],
line_items: lineItems,
payment_intent_data...
Doorpost asked 16/4, 2021 at 3:46
4
Solved
I am trying to integrate Stripe to my website, the problem is that I receive the following error:
js.stripe.com/v3/hcaptcha-invisible-078b5f9fb44d244a9ec072f93a216630.html#debugMode=false&pare...
Forge asked 25/12, 2023 at 21:23
2
Solved
I'm trying to load a checkout.stripe in an iframe, but it doesn't work, I get this message:
Stripe Checkout is not able to run in an iFrame. Please redirect to Checkout at the top level.
I read b...
Kalman asked 19/6, 2023 at 18:35
6
Solved
I'm following the documentation for Stripe Checkout with server integration: https://stripe.com/docs/payments/checkout/server
The code in the examples works fine, but the problem I'm having is bei...
Ens asked 18/4, 2019 at 8:49
4
Solved
Stripe Payment is completely work but i got the warning message on the console, "Unsupported prop change on Elements: You cannot change the stripe prop after setting it."
Here is my code....
Imprimis asked 5/11, 2020 at 8:21
© 2022 - 2025 — McMap. All rights reserved.