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
2 answers

Can certain URLs be exempt from CSRF in sails.js?

I'm setting up Stripe to work with my sails.js server, and in order to use Stripe's webhooks, I need to disable CSRF for the URLs I provide to Stripe. Is it possible to make certain URLs exempt from CSRF POST requirements in sails.js? The only…
Murcho
  • 105
  • 6
3
votes
3 answers

Laravel Cashier Create Subscription

It's very easy to create a stripe customer, associate a card with that customer and charge them at anytime after. However, using Laravel cashier it's not so easy to subscribe a user to a plan at any time…
itsliamoco
  • 1,028
  • 1
  • 12
  • 28
3
votes
1 answer

django stripe set up installation error

My problem is down to my lack of experience with django (and coding) and stripe. I am trying to test a very basic stripe payment on a test form on my local development server, but I am getting an error message when I try to start my local…
user3354539
  • 1,245
  • 5
  • 21
  • 40
3
votes
1 answer

What happens with stripe when javascript is disabled

If the user has the javascript disabled in her browser, Does Stripe degrades gracefully or just breaks?
Victor
  • 23,172
  • 30
  • 86
  • 125
3
votes
3 answers

stripe-ruby-mock gem with Minitest

I am new to testing. I am trying to use stripe-ruby-mock gem with minitest. In the stripe-ruby-mock docs they describe a dummy example in Rspec that I am trying to translate to minitest: require 'stripe_mock' describe MyApp do let(:stripe_helper)…
softcode
  • 4,358
  • 12
  • 41
  • 68
3
votes
0 answers

Stripe android app connect to Node.js server

I'm working a project to integrate Stripe's payment service to my android app. I have the basic client code setup. Card card = new Card("4242424242424242", 12, 2016, "123"); boolean validate = card.validateCard(); if (validate) { …
lhsieh814
  • 31
  • 1
  • 4
3
votes
2 answers

Can't return 200 to Stripe Webhook

I am trying to test receive JSON webhooks from Stripe. I have read: Stripe Webhook on Rails https://stripe.com/docs/webhooks They require a 200 status response in order to acknowledge receipt. I want to solve this before moving on to dealing with…
softcode
  • 4,358
  • 12
  • 41
  • 68
3
votes
4 answers

How to generate token in stripe payment gateway

I want to make a payment gateway using Stripe. Here is my code. The config file and first of all i add a stripe library in confiig file. I want a token from this. How do I make or generate a token from…
ravi shah
  • 111
  • 1
  • 1
  • 4
3
votes
1 answer

Saving payment for later with activemerchant

Active Merchant seems like a nice gem for payments. However, I need the ability to save a customer's payment information and then charge the card at a later date (ie, at time of shipping not at time of order placement). Both Braintree and Stripe…
user21398
  • 1,473
  • 4
  • 18
  • 31
3
votes
0 answers

Can't retrieve STPToken tokenId?

I'm trying to write an iOS app that uses ApplePay and Stripe in pure Swift with a Parse backend. I've got ApplePay working, and correctly authorizing and tokenizing the information through Stripe, but when the STPToken comes back, I can't get the…
AttilaTheFun
  • 701
  • 2
  • 11
  • 19
3
votes
2 answers

Correct syntax to pre-fill fields on Stripe Connect's oauth/authorize signup

I am having difficulty getting fields to pre-fill on Stripe Connect's user authorization signup page based on the optional query string params listed on https://stripe.com/docs/connect/reference. This page identifies optional fields such as…
Jeremy S.
  • 4,599
  • 3
  • 18
  • 25
3
votes
1 answer

Create an order in WooCommerce using S2Members API and wc_create_order

I'm trying to use S2Members 'Payment Notification API' to create an order in WooCommerce when a payment is processed. I'm going to be batch shipping my product once a month to all members who've paid for access that month, I plan on exporting a CSV…
ryantcarter
  • 43
  • 1
  • 1
  • 3
3
votes
1 answer

Stripe payment error (You must supply either a card or a customer id) using Laravel

I'm trying to use the stripe to make a small payment form in my application using Laravel. I followed even the tutorials from Laracast. I'm getting this error Stripe_InvalidRequestError You must supply either a card or a customer id…
user1012181
  • 8,648
  • 10
  • 64
  • 106
3
votes
1 answer

What does the "for stripe.com only" constraint of dj-stripe mean?

https://github.com/pydanny/dj-stripe says, "For stripe.com only". I'm new enough to Stripe that I don't know what the implications of this are. What will I not be able to do as a result of using dj-stripe?
Brian
  • 1,351
  • 2
  • 15
  • 29
3
votes
1 answer

How can I override core Woocommerce plugin function?

I'm trying to override the output HTML from the Woocommerce Stripe plugin. How would I go about doing that? I've read some articles and the docs about action hooks and filters but I believe those are only for the Woocommerce plugin alone and not the…
1 2 3
99
100