我正嘗試將資金轉移到託管帳戶,但我收到錯誤消息:「必須提供源代碼或客戶。」。這是請求正文和標題發送到API。Stripe + React Native - 如何創建轉賬到託管賬戶(錯誤:「必須提供來源或客戶。」)?
var transferBody= {
"amount": "1000",
"currency": "usd",
"destination": "default_for_currency",
}
let apiTransferRequest = {
method: 'post',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/x-www-form-urlencoded',
'Authorization': 'Bearer ' + secret_key,
'stripe_account': 'acct_198vxeLmTNKjRg7x'
},
body: transferBody
}
不應該提供'stripe_account'
在頭讓自己代爲託管賬戶的,所以又應該作爲源行動?
據我瞭解,在提供的頭文件'stripe_account'
和使用'destination'
參數設置爲'default_for_currency'
,使管理賬戶從自己的條紋託管賬戶餘額轉賬到其默認借記卡。
我按照這個例子,在標準傳輸https://stripe.com/docs/connect/bank-transfers下,我使用的是React Native,所以這是使用Stripe.js的唯一方法,據我所知。我正在關注http://blog.bigbinary.com/2015/11/03/using-stripe-api-in-react-native-with-fetch.html
預先感謝您,並會接受/贊成答案。
欣賞澄清。我是如何理解這一點的?在原始文章中提供標題中的'stripe_account',是否正確?另外我知道密鑰不應該用在前端代碼中,所以我應該將它存儲在我的後端服務器中嗎?另外,在這裏http://blog.bigbinary.com/2015/11/03/using-stripe-api-in-react-native-with-fetch.html,它跟隨什麼Stripe庫?最後,這樣做是否符合PCI標準,因爲它實際上使用stripe.js? –