Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Stripe Payment Linksを使ってみてオフライン体験も考えてみた
Search
Satoshi7
November 01, 2019
42
0
Share
Embed
Copy iframe code
Copy JS code
Copy link
Start on current slide
Stripe Payment Linksを使ってみてオフライン体験も考えてみた
Satoshi7
November 01, 2019
More Decks by Satoshi7
See All by Satoshi7
AI駆動開発の成功と失敗 クラスメソッドの実践事例集
satoshi7
3
1.8k
就職せずに自己資本でクラスメソッドを起業して21年掛けて年商950億円になった話
satoshi7
60
61k
ファクトリークリエイティブキャンプ 製造業におけるクラウド・生成AI・IoT活用の現在地と未来展望
satoshi7
1
710
Classmethod Transformation
satoshi7
0
740
Classmethod Introduction
satoshi7
8
8.4k
re:Inventの10年を振り返る -カルチャーとビジョン-
satoshi7
2
270
Building a smart store using sensors, devices and virtual space.
satoshi7
1
410
16年掛けて年商200億円になった話
satoshi7
4
12k
Developers.IO CAFE これまでとこれから
satoshi7
0
2.4k
Featured
See All Featured
The Cult of Friendly URLs
andyhume
79
7k
Code Review Best Practice
trishagee
74
20k
Art, The Web, and Tiny UX
lynnandtonic
304
22k
svc-hook: hooking system calls on ARM64 by binary rewriting
retrage
2
450
Exploring the Power of Turbo Streams & Action Cable | RailsConf2023
kevinliebholz
37
6.5k
Connecting the Dots Between Site Speed, User Experience & Your Business [WebExpo 2025]
tammyeverts
11
990
Designing for humans not robots
tammielis
254
26k
Abbi's Birthday
coloredviolet
3
9.3k
Color Theory Basics | Prateek | Gurzu
gurzu
0
410
Noah Learner - AI + Me: how we built a GSC Bulk Export data pipeline
techseoconnect
PRO
0
350
Build The Right Thing And Hit Your Dates
maggiecrowley
39
3.4k
Being A Developer After 40
akosma
91
590k
Transcript
1
2 Stripe Payment Links 使ってみた
横⽥聡 クラスメソッド株式会社 代表取締役 経歴 クラスメソッド株式会社、創業して17年、国内外に10法⼈ 主な業務 事業会社向けにクラウドやモバイルなどの技術⽀援 コミュニティ Java、Flex、AWS、SORACOM、Stripe メディア運営
DevelopersIO、Zenn 研究開発 デバイス開発、レジレスキャッシュレス店舗、 コンピュータビジョン、センサーフュージョン ソーシャル Facebook /satoshi7、Twitter @sato_shi
4 Stripe Payment Links やってみた 画⾯ポチポチ (ノーコード) https://dev.classmethod.jp/articles/stripe-payment-links-qrcode/
5 オフラインの体験も Stripe Payment Linksでオンライン体験 これをオフラインにも対応してみる - 店舗で購⼊して⾃宅に配送 -
6 いろいろ設定できる
7 サブスクの体験も Stripe Payment Linksでサブスク体験 これをオフラインにも対応してみる - 店舗で加⼊してサブスク開始 -
8 URLからQRコード画像を⽣成する(Python) from urllib.parse import urlparse, parse_qs from http.server import
HTTPServer, BaseHTTPRequestHandler from io import BytesIO import sys import qrcode class class1(BaseHTTPRequestHandler): def do_GET(self): parsed = urlparse(self.path) params = parse_qs(parsed.query) target = params.get('url','#') qr = qrcode.make(target) img_bytes = BytesIO() qr.save(img_bytes, format='PNG') img_bytes = img_bytes.getvalue() self.send_response(200) self.send_header('Content-type','image/png') self.end_headers() self.wfile.write(img_bytes) ip = '127.0.0.1' port = 8080 server = HTTPServer((ip, port), class1) server.serve_forever()
http://localhost:8080/?url=https://buy.stripe.co m/test_14kaH4dVa3vf3EA6oq 9 スマホのカメラでQRコードを読み取る
10 TIPS 総額表⽰義務化に伴い Payment Links内で 消費税別の商品は作れない
11 ⼿数料の例(Stripe Billing(サブスク)を使った場合) 商品の⾦額 ︓11,000円(税込み) 決済⼿数料 ︓396円(3.6%)※クレカ決済⼿数料は⾮課税 純売上 ︓10,604円 Billing⼿数料︓55円(0.5%)
Billing⼿数料の消費税︓6円 ※5.5円の四捨五⼊ 銀⾏に振り込まれる⾦額 11,000 – 396 – 55 – 6 = 10,543円 ※前受消費税1,000円、仮払い消費税6円
12 TIPS APIでPayment LinksのURLを作りたい 今はできない (ノーコードと⽭盾w)
13