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 - Check Card balance

I wonder if it is possible to check if a (debit or credit) card has enought balance to pay for a (not so far) future charge. I have read the Stripe API but I can't find any about if this is possible or not (I hope it is). I know Stripe validate…
Gocht
  • 9,924
  • 3
  • 42
  • 81
3
votes
2 answers

Adding Stripe Pod- linker error

The pod was installed properly. I also tried a clean/build multiple times. My header files are included in the bridging header. My architectures include arm64 but I'm still receiving this error. Undefined symbols for architecture…
Daisy R.
  • 633
  • 1
  • 7
  • 19
3
votes
2 answers

Extract value from Stripe object

How do I get the value of 'name'? I've been trying various methods, including array($charge) and __toArray. First works, second does not: $charge_id = $charge->id; echo $charge_id; $name=$charge->_values->name; echo $name; Here is portion of the…
3
votes
0 answers

Connect Stripe using android and getting Stripe user id?

Launch Stripe Connect page in Stripe Dialog. Stripe Connect Using Following Code: mStripeButton = (StripeButton) PaymentOptionPage.findViewById(R.id.StripeConnect); mStripeButton.setStripeApp(mApp); …
Deva
  • 150
  • 2
  • 2
  • 17
3
votes
2 answers

Stripe Response when Retrieving Customer Sources

I am trying to retrieve all cards for a particular customer, by supplying a customer ID. Per the documentation, I am expecting the following response: Stripe\Collection JSON: { "object" => "list", "url" =>…
cdwyer
  • 589
  • 6
  • 22
3
votes
1 answer

Associate application user with Stripe user after Stripe Connect OAuth callback

I need to implement Stripe Connect in my project, So i am following this guide OAuth flow worked perfectly and I received the JSON response as expected in my /stripe/callback endpoint - { "token_type": "bearer", "stripe_publishable_key":…
Koder
  • 1,794
  • 3
  • 22
  • 41
3
votes
1 answer

Not sure file is being read: Uncaught ReferenceError: Stripe is not defined

So I have been having an interesting time trying to get Stripe up and running in my app, currently the problem is that a payment token is not being generated for transactions. When I try to process a test payment I get this error: Must provide…
HolyMoly
  • 2,020
  • 3
  • 22
  • 35
3
votes
2 answers

How to pay users on Android

I would like to know the best way to do this: users of my Android app gain points as they use the app. they can then 'check out' their points for money to their paypal or bank account the app should take the money out of my the app's paypal account…
Nickmccomb
  • 1,467
  • 3
  • 19
  • 34
3
votes
1 answer

Unable to install Laravel's 5 cashier/stripe packages

I have put the "laravel/cashier": "~5.0" line in my composer.json file, updated it; Next, I have put the line 'Laravel\Cashier\CashierServiceProvider' into $providers array in, app.php Then, in cmd when I try to migrate table, php artisan…
sk4yb3n
  • 244
  • 1
  • 4
  • 9
3
votes
1 answer

Charging an account in Stripe

I'm trying to implement payments with Stripe, i'm using Stripe connect. I'm reading documentation for "Charging through the platform" and it says: \Stripe\Stripe::setApiKey(PLATFORM_SECRET_KEY); \Stripe\Charge::create(array( 'amount' => 1000, …
Pipe
  • 2,379
  • 2
  • 19
  • 33
3
votes
1 answer

Stripe Checkout - PHP

I have managed to get Stripe Checkout to work using PHP. But I wanted to get rid of the initial Stripe Button where it usually says "proceed to payment" or "pay by card". I just wanted to link the button on my site to go directly to the Checkout…
Sharan
  • 49
  • 1
  • 8
3
votes
1 answer

Is Stripe Checkout broken?

The latest version of Stripe checkout looks to be buggy. I'm getting Uncaught TypeError: Cannot read property 'precision' of null on Stripe Checkout On my checkout code. It's the same error on their tutorial page…
Steven P
  • 1,956
  • 1
  • 16
  • 17
3
votes
2 answers

Proper way to create stripe charge in django/python

I'm currently integrating stripe into a django project. I followed the tutorial on stripe website using the code samples but I'm not sure if they are production ready. This is the most delicate part of the application and I want to be sure it's done…
Emmanuel Osimosu
  • 5,625
  • 2
  • 38
  • 39
3
votes
1 answer

My Stripe payment is working perfect. But now i want to catch from Database

I am using Stripe Payment. I have integrated the Stripe checkout system in my Php website. With Static prices it works good. But not I want to get Prices from My Database. And it shows on screen that it is charged. But in my strip account it is not…
3
votes
1 answer

Stripe error: "you can only make test charges right now"

Stripe.js won't process my test payments. It's giving the error: you can only make test charges right now. What causes this?
Jephron
  • 2,652
  • 1
  • 23
  • 34