RazmikSaghoyan / -omnipay-telcell

TelCell driver for the Omnipay Laravel payment processing library
0 stars 1 forks source link

The bill:issuer parameter is required #3

Open ArtMin96 opened 1 year ago

ArtMin96 commented 1 year ago
$gateway = Omnipay::create('Telcell');
$gateway->setShopId($this->account);
$gateway->setShopKey($this->secretKey);

I have tried these two options as well.

$gateway->setParameter('bill:issuer', 'dsfsd');
//OR
$gateway->setBillIssuer('test@test.com');

Even when I try to give bill:issuer a value it is still not there.

dd($gateway->purchase());

7

ArtMin96 commented 1 year ago

Also

$gateway->setTransactionId('45SsfrnXXsd745');
// OR
$gateway->setParameter('issuer_id', '45SsfrnXXsd745');

The issuer_id parameter is required

ArtMin96 commented 1 year ago

For bill:issuer I just changed from $gateway->setParameter('bill:issuer', '') to $gateway->setParameter('bill_issuer', ''). I don't know how, but it changed and became bill:issuer. Now the problem is the issuer_id