2017-03-15 60 views
1

我們正在構建一個Android應用程序,我們希望使用Stripe作爲支付平臺。條紋 - 連接到獨立帳戶

我們發現這個github(https://github.com/thiagolocatelli/android-stripe-connect)指定了如何集成獨立條紋帳戶。問題是,在認證的最後一步,我們應該呼籲

Stripe.apiKey = mSession.getAccessToken(); 

,並同時在網站上的文件說,這是我們應該使用的命令,在Android工作室表明的那樣:「無法解析符號「apiKey 「」。

我們遇到的另一個問題是

Account account = Account.retrieve();

一個Account類變更爲BankAccount而現在沒有retrieve功能爲BankAccount類。

回答

0

根據Stripe Authentication doc, Stripe.apiKey用於存儲條帶請求的API密鑰。

更換

Stripe.apiKey = mSession.getAccessToken(); 

Stripe.apiKey = "[PLATFORM_SECRET_KEY]"; 

您可以使用Account類添加多個銀行賬戶。

檢查Managing multiple bank and debit accounts

Stripe.apiKey = PLATFORM_SECRET_KEY; 
Account account = Account.retrieve(CONNECTED_STRIPE_ACCOUNT_ID, null); 
Map<String, Object> params = new HashMap<String, Object>(); 
params.put("external_account", "btok_9CUaZTAdbT4G5z"); // ("account","tokenId") 
account.getExternalAccounts().create(params); 

我希望它可以幫助你。