Questions tagged [stripe-payments]

Stripe-payments refers to the libraries and API produced by the "Stripe" company for payment processing.

Overview

Stripe is a complete commerce toolkit for developers—built by developers. Our comprehensive payments platform enables rapid expansion to new business models, markets, and customers. We provide language-specific libraries for PHP, Ruby, Java, Node, Go, .Net, iOS, and Android.

Developer Resources

Products

Stripe Payments: Advanced processing capabilities and support for over 135 currencies.

  • Stripe Checkout: A drop-in, smart payments page to start accepting payments in minutes.
  • Stripe Elements: A set of adaptive UI components to build secure, pixel-perfect checkouts across desktop and mobile.

Stripe Billing: A subscriptions and invoicing platform for recurring revenue.

Stripe Connect: A platform to onboard and pay out sellers or service providers in more than 25 countries.

Stripe Terminal: Card present, in-person checkout using a set of card readers, APIs, and SDKs.

Stripe Radar: A real-time ML fraud prevention powered by behavioral information and data from the Stripe network.

Stripe Sigma: Get instant answers from your Stripe data and create custom reports with SQL queries.

Stripe Issuing: An end-to-end platform for creating, distributing, and managing physical and virtual cards.

11539 questions
3
votes
1 answer

Stripe/Apple-pay Error

I keep getting this error when integrating stripe with apple-pay. Ive tried upload the CSR file according to Stripe but no luck. {com.stripe.lib:ErrorMessageKey=We couldn't fully decrypt your request. Please make sure you've uploaded your Apple Pay…
Beyond 2021
  • 133
  • 1
  • 7
3
votes
1 answer

Stripe auth and capture

I am stuck with the question that I have successfully implemented Instant Payment Method of Stripe Payment Gateway but now I want change the Instant Payment to Two-Step Payments method because of some requirement. I'm refering Does Stripe support…
Mitul Koradiya
  • 318
  • 2
  • 5
  • 19
3
votes
2 answers

Check if a user has a subscription with dj-stripe in Django templates

I'd like to have a button in many different Django templates that encourages users to subscribe to one of two dj-stripe paid plans, but I don't want to show the button to users who have already subscribed to either plan. I know I can use {% if…
Michelle Glauser
  • 1,097
  • 16
  • 28
3
votes
1 answer

Get invoices from Stripe

I'm trying to get list of invoices for specific customer from Stripe using PHP. Following is the code I'm using. \Stripe\Stripe::setApiKey('STRIPE_SECRET_KEY'); $response = \Stripe\Invoice::all(array('customer' => 'CUSTOMER_TOKEN')); But this…
adeltahir
  • 1,087
  • 2
  • 15
  • 31
3
votes
0 answers

Stripe error: STPToken? is not a subtype of STPToken

I am implementing Stripe in swift, and I am now trying to get the token from the card that was input. Like this : var Client : STPAPIClient? Client?.createTokenWithCard(card, completion: { (token: STPToken!, error: NSError!) -> Void in }) and I…
Jason
  • 1,057
  • 3
  • 13
  • 31
3
votes
1 answer

Trying to get property of a non object

I've came across this problem before, but I fixed and it was actually simple. I can't remember what I did to fix it.. :/ It's not showing me as premium at the bottom of my page, my purchase goes through, it just doesn't update because it says,…
David
  • 184
  • 15
3
votes
1 answer

Stripe Checkout - Charge Amount

I'm following the basic example from https://stripe.com/docs/checkout/guides/php and having problems seeing how the amount can be determine and use in the creation of the charge. I would have thought/hoped that using the token I created I would be…
Carlton
  • 5,533
  • 4
  • 54
  • 73
3
votes
1 answer

Using nodejs calling Stripe API to get total_count

I am using Stripe with nodejs to get a list of say all the charges, with the total_count included in the results. I call it like this: stripe.charges.list({include: ['total_count'] }, cb) But I get the following error back from the API: Unhandled…
Joerg
  • 3,553
  • 4
  • 32
  • 41
3
votes
3 answers

How can an email be returned from Stripe Checkout?

Using Stripe, I want to store a customer email address from the email they supplied in Checkout. Unfortunately, posting stripeEmail in my charge.php file returns null. How can I return the email from checkout so I can use it to send a…
user2888697
  • 173
  • 3
  • 14
3
votes
3 answers

submit form after stripe custom checkout processes

I'm using Stripe Custom Checkout. After a successful charge I'm trying to get a form to automatically be submitted. I know the form works but I'm not able to get the form to submit after the stripe checkout processes. I'm pretty sure the code should…
3
votes
4 answers

Stripe and Apple Pay not working in iOS App

I am getting very frustrated as I have spent long hours on a solution to this problem. I am creating a request using the code below: PKPaymentRequest *request = [Stripe …
user2918201
  • 52
  • 1
  • 7
3
votes
1 answer

Pod (PaymentKit) can't load images using imageNamed

I'm updating my project to Swift 1.2 What has been done so far (changes from working project): Updated Xcode to 6.3 Updated Alamofire to 1.2.0 Added it to Podfile Added use_frameworks! to Podfile Changed platform in Podfile 7.0 to 8.0 Updated…
OgreSwamp
  • 4,602
  • 4
  • 33
  • 54
3
votes
2 answers

Python Flask post and return json objects

Apologies if this seems rudimental as I am new to Python. The task I am trying to complete is to send a json object from an iPhone app to a python script that will process a stripe payment. The problem I have is I cannot figure out how to get Python…
dickiebow
  • 92
  • 1
  • 1
  • 12
3
votes
1 answer

Stripe on iOS and saving card details

I need to implement "Save card" and "Delete card" features in my iOS app. From Stripe documentations I found that we can create a customerId on our backend and link it to our internal userId. But we need part of card details to display it to user.…
OgreSwamp
  • 4,602
  • 4
  • 33
  • 54
3
votes
1 answer

How do I pass error messages from meteor server to client

I am using a meteor method to retrieve values from a client side function. I am using stripe api, it is working fine However when there is a error in the stripe.charges.create function the error is not passed back to the client, which results in…
Tom Sawyer
  • 59
  • 1
  • 7