質問編集履歴
3
秘匿情報部分の削除
test
CHANGED
File without changes
|
test
CHANGED
@@ -32,9 +32,9 @@
|
|
32
32
|
})
|
33
33
|
subscription = Stripe::Subscription.create({
|
34
34
|
customer: customer.id,
|
35
|
-
plan: "price_
|
35
|
+
plan: "price_"
|
36
36
|
})
|
37
|
-
@team.plan_id = "price
|
37
|
+
@team.plan_id = "price"
|
38
38
|
@team.customer_id = customer.id
|
39
39
|
@team.stripe_subscription_id = subscription.id
|
40
40
|
@team.active_until = Time.zone.at(subscription.current_period_end)
|
@@ -76,7 +76,7 @@
|
|
76
76
|
</article>
|
77
77
|
|
78
78
|
<script src="https://checkout.stripe.com/checkout.js" class="stripe-button"
|
79
|
-
data-key = "pk_test
|
79
|
+
data-key = "pk_test"
|
80
80
|
data-description="月額支払い"
|
81
81
|
data-name="月額料金支払い"
|
82
82
|
data-amount="500"
|
2
修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -78,7 +78,7 @@
|
|
78
78
|
<script src="https://checkout.stripe.com/checkout.js" class="stripe-button"
|
79
79
|
data-key = "pk_test_51QCJ9qDNU1oRw2ASNaFP05rfdYMh8y7I1qb9akrRJuGefBWPXLjZXYWpwnoEbzcZ917BgqrFuAGufj7cTcRNTKGf00rcFAQR4Y"
|
80
80
|
data-description="月額支払い"
|
81
|
-
data-name="
|
81
|
+
data-name="月額料金支払い"
|
82
82
|
data-amount="500"
|
83
83
|
data-locale="ja"
|
84
84
|
data-currency="JPY"
|
1
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -6,6 +6,8 @@
|
|
6
6
|
Stripeを使ったサブスク機能は下記のサイトを参考にしました。
|
7
7
|
[RailsアプリにStripeを用いたサブスクリプション決済を導入する(詳しく解説)](https://qiita.com/nR9h3kLy/items/e5937f33ae8a19b46324)
|
8
8
|
|
9
|
+
現状、登録後は下記の表示になります。(テスト環境です)
|
10
|
+
![イメージ説明](https://ddjkaamml8q8x.cloudfront.net/questions/2024-11-03/c7e85fc9-c4e2-4e75-9a17-fdc571d624ce.png)
|
9
11
|
### 発生している問題・エラーメッセージ
|
10
12
|
|
11
13
|
```
|