2016-06-22 30 views
0

我遇到了嘗試在控制器中使用StripeCustomer的問題。我需要從Stripe中檢索一個客戶。所以我在我的控制器上使用Stripe \ Customer作爲StripeCustomer;我在收銀員的Billable.php中看到這種方式。但是我嘗試在控制器中使用它,我得到Laravel在控制器中使用Stripe Customer作爲StripeCustomer引發錯誤

無法確定哪些網址的請求:條紋\客戶實例都有 無效ID:

任何想法如何內使用條紋\客戶控制器?有一個名稱空間的範圍嗎?提前致謝。

回答

2

看起來有點像代碼被發現很好,所以你的use聲明可能沒有錯。

錯誤消息表明您正在嘗試操作未處理的Stripe \ Customer對象,或使用該對象。

您的代碼應該像這樣的小(從條紋文檔拍攝)

\Stripe\Stripe::setApiKey("sk_test_KZ3pTiXRPJ1gpqLlKlEGA3bY"); 
$customer = StripeCustomer::retrieve("cus_8gZXNXuq2kIsQv"); 
// work with $customer here... (assumes your use statement from the question) 
相關問題