LoginSignup
4
5

More than 5 years have passed since last update.

決済stripe早見表 [随時更新]

Posted at

作りきっかけになったのは、Stripeは、多様なことができるのでどこにどのドキュメントが落ちているかわからないためにまとめることにしました。

さっそく、やってみたいと思います。

テストカードとトークンがあるページ

自分がよくつかうのはこのtest token

number: ‘4242424242424242’,
exp_month: 12,
exp_year: 2018,
cvc: ‘314’

quick startページ

これで安全なtokenが作れそうだ

<form action="your-server-side-code" method="POST">
  <script
    src="https://checkout.stripe.com/checkout.js" class="stripe-button"
    data-key="stripe token"
    data-amount="999"
    data-name="company name"
    data-description="Example charge"
    data-image="https://stripe.com/img/documentation/checkout/marketplace.png"
    data-locale="auto"
    data-currency="jpy">
  </script>
</form>
4
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
5