我正在尝试在 Laravel 中使用 Mollie,但遇到了问题。这是我的代码(来自 Laravel/Mollie Github 页面的令牌):
public function payApi($amount, $email) {
$payment = Mollie::api()->payments()->create([
'amount' => $amount,
'description' => $email,
'redirectUrl' => 'http://google.com',
]);
$payment = Mollie::api()->payments()->get($payment->id);
if ($payment->isPaid()) {
echo "Payment received";
}
}
这是错误:
Mollie_API_Exception in Base.php line 353: Error executing API call (request): Unauthorized request
我想这是因为我需要设置 API 测试密钥,但我不知道如何在 Laravel-Mollie 中做到这一点,尽管它是为标准 Mollie 记录的。