没有客户 ID 或帐户 ID 就无法访问银行帐户

Bank accounts cannot be accessed without a customer ID or account ID

我正在尝试验证我的 stripe 帐户以提供 ACH 付款以及一些 stripe banckaccount 功能如何不起作用

$customer = \Stripe\Customer::retrieve($cust->id);
$bank3 = \Stripe\BankAccount::retrieve($customer->default_source);

您使用了错误的端点。您正在寻找 Retrieve a Customer Source endpoint. Once you follow those steps, you can verify the account as described in the ACH Documentation.