All Projects → stripe-samples → mobile-saving-card-without-payment

stripe-samples / mobile-saving-card-without-payment

Licence: MIT license
Learn how to save a credit card without taking a payment on iOS & Android

Programming Languages

java
68154 projects - #9 most used programming language
objective c
16641 projects - #2 most used programming language
kotlin
9241 projects
swift
15916 projects
PHP
23972 projects - #3 most used programming language
ruby
36898 projects - #4 most used programming language

Saving cards without payment on mobile (iOS & Android)

This sample shows how to build a form to save a credit card without taking a payment using the Setup Intents API.

How to run

This sample includes 5 server implementations in Node, Ruby, Python, Java, and PHP. It also includes 4 mobile client implementations, in Swift (iOS), Objective-C (iOS), Kotlin (Android), and Java (Android).

Follow the steps below to run locally.

1. Clone the repository:

git clone https://github.com/stripe-samples/mobile-saving-card-without-payment

2. Copy the .env.example to a .env file:

cp .env.example .env

You will need a Stripe account in order to run the demo. Once you set up your account, go to the Stripe developer dashboard to find your API keys.

STRIPE_PUBLISHABLE_KEY=<replace-with-your-publishable-key>
STRIPE_SECRET_KEY=<replace-with-your-secret-key>

CLIENT_DIR tells the server where the client files are located and does not need to be modified unless you move the server files.

3. Follow the server instructions on how to run:

Pick the server language you want and navigate to its directory (e.g. cd server/node). Follow the instructions in the server folder README to run the server locally.

4. [Optional] Run a webhook locally:

If you want to test the integration with a local webhook on your machine, you can use the Stripe CLI to easily spin one up.

First install the CLI and link your Stripe account.

stripe listen --forward-to localhost:4242/webhook

The CLI will print a webhook secret key to the console. Set STRIPE_WEBHOOK_SECRET to this value in your .env file.

You should see events logged in the console where the CLI is running.

When you are ready to create a live webhook endpoint, follow our guide in the docs on configuring a webhook endpoint in the dashboard.

5. Set up the client app:

Next, choose a client app, and follow the instruction in the folders' README to run.

When the app is running, use 4242424242424242 as a test card number with any CVC code + a future expiration date.

Use the 4000000000003220 test card number to trigger a 3D Secure challenge flow.

Read more about testing on Stripe at https://stripe.com/docs/testing.

FAQ

Q: Why did you pick these frameworks?

A: We chose the most minimal framework to convey the key Stripe calls and concepts you need to understand. These demos are meant as an educational tool that helps you roadmap how to integrate Stripe within your own system independent of the framework.

Get support

If you found a bug or want to suggest a new [feature/use case/sample], please file an issue.

If you have questions, comments, or need help with code, we're here to help:

Sign up to stay updated with developer news.

Author(s)

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].