我正在尝试使用https://github.com/mollie/mollie-api-php的参考在 codeIgniter 中应用 mollie 支付网关。但它在其中不起作用。我已经在 laravel 中使用过这个库,它在那里工作。当我尝试在codeIgniter中使用时,它直接将我重定向到redirectUrl,当我签入mollie支付仪表板时,没有付款。我不明白我做错了什么。谁能帮我?我在 composer.json 中使用了它并更新了作曲家
"mollie/mollie-api-php": "^2.0"
在我的控制器文件中,
class Mollie_test extends CI_Controller {
public function make_payment()
{
$mollie = new \Mollie\Api\MollieApiClient();
$mollie->setApiKey("test_key");
$payment = $mollie->payments->create([
'amount' => [
'currency' => 'EUR',
'value' => '10.00'
],
'description' => 'tesst',
'redirectUrl' => redirect('mollie_test/success')
]);
}
public function success()
{
echo 'payment process completed';
}
}