Skip to content

Latest commit

 

History

History
27 lines (15 loc) · 882 Bytes

2_credentials.md

File metadata and controls

27 lines (15 loc) · 882 Bytes

Stripe Credentials

To use Stripe with Pay, you'll need to add your API keys and Signing Secret(s) to your Rails app. See Configuring Pay for instructions on adding credentials or ENV Vars.

API keys

You can find your Stripe private (secret) and pubilc (publishable) keys in the Stripe Dashboard.

Signing secrets

Webhooks use signing secrets to verify the webhook was sent by Stripe. You can find these on your Stripe Dashboard or the Stripe CLI.

Dashboard

The Webhooks page on Stripe contains all the defined endpoints and their signing secrets.

Stripe CLI (Development)

View the webhook signing secret used by the Stripe CLI by running:

stripe listen --print-secret

Next

See JavaScript