Stripe connectとNuxt.jsとFirebaseを使ってWebアプリを個人開発しています。
以下のURLを参考に今回初めてStripeを使ってみているのですが、customアカウントの作成で早速つまづきました。。。
https://stripe.com/docs/connect/custom-accounts
createメソッドを呼び出した際にアカウントを作成し、そのIDをコンソールに表示してみたいのですが何も表示されません。
あと基礎的な質問で申し訳ないのですが、そもそもこのコードはFirebase Cloud Functionsなどサーバー側で動かすべきものなのでしょうか...??
<template> <div><v-btn @click="create()">Create</v-btn></div> </template> <script> export default { data() { return {} }, methods: { create() { const stripe = require('stripe')( 'sk_test_xxx' ) console.log(stripe) // ここは表示される stripe.accounts .create({ country: 'JP', type: 'custom', capabilities: { card_payments: { requested: true, }, transfers: { requested: true, }, }, }) .then(function (acct) { console.log(acct.id) }) } } } </script>
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。