在两个不同的条带客户中创建或获取条带客户
我有两个条带帐户:
# Stripe API Keys
STRIPE_KEY=pk_test_abc
STRIPE_SECRET=sk_test_abc
STRIPE_KEY_MAPPING=pk_test_opr
STRIPE_SECRET_MAPPING_MASTER=sk_test_opr
我将两者放在一个数组中:
$stripe_accounts = [
env('STRIPE_SECRET'),
env('STRIPE_SECRET_MAPPING_MASTER')
]
现在我要在两个帐户中创建用户:
foreach ($stripe_accounts as $item) {
Stripe::setApiKey($item);
$hotel = session('hotel');
$stripeUser = $hotel->createOrGetStripeCustomer();
$hotel->updateDefaultPaymentMethodFromStripe();
}
我没有错误,但是当我检查此帐户的条带仪表板STRIPE_KEY_MAPPING
时,我看不到任何测试数据。如何创建在两个不同帐户中创建相同条带客户的流程?
解决方案
Laravel Cashier gets Stripe API keys from the .env
file,其中uses the DotEnv library。
尝试此问题答案中的方法更改代码中的条纹API密钥:How to set .env values in laravel programmatically on the fly
相关文章