- Issue created by @Xperd
- Status changed to Fixed
7 months ago 6:57am 1 May 2024 Automatically closed - issue fixed for 2 weeks with no activity.
GP Webpay gateway URL must be changed until May 6, 2024
Page 9 - https://www.gpwebpay.cz/downloads/GP_webpay_HTTP.pdf
commerce_gpwebpay/src/Plugin/Commerce/PaymentGateway/GPWebpay.php
/**
* Gets instance of GP Webpay driver.
*
* @return \Chaching\Chaching
* GP Webpay driver instance.
*/
public function getDriverInstance(): Chaching {
$driver = Chaching::GPWEBPAY;
$authorization = [
$this->configuration['merchant_id'],
[
'certificate' => $this->configuration['private_key_path'],
'passphrase' => $this->configuration['passphrase'],
'key' => $this->configuration['certificate_path'],
'url_handle' => 'pgw',
],
];
$options = [
'sandbox' => ($this->getMode() == 'test'),
];
return new Chaching($driver, $authorization, $options);
}
Fixed
1.0
Code
Automatically closed - issue fixed for 2 weeks with no activity.