Skip to content

Commit

Permalink
Merge pull request #38 from ilyasokay/master
Browse files Browse the repository at this point in the history
3D Model 500 Hatası Giderildi
  • Loading branch information
mewebstudio authored Sep 16, 2021
2 parents c92ae8f + 9500fc2 commit b9e07aa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion config/pos.php
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@
'class' => Mews\Pos\Gateways\PayForPos::class,
'urls' => [
'production' => 'https://vpos.qnbfinansbank.com/Gateway/XMLGate.aspx',
'test' => 'https://vpostest.qnbfinansbank.com/Gateway/XmlGate.aspx',
'test' => 'https://vpostest.qnbfinansbank.com/Gateway/XMLGate.aspx',
'gateway' => [
'production' => 'https://vpos.qnbfinansbank.com/Gateway/Default.aspx',
'test' => 'https://vpostest.qnbfinansbank.com/Gateway/Default.aspx',
Expand Down
3 changes: 3 additions & 0 deletions src/Gateways/PayForPos.php
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,9 @@ public function send($postData)
$client = new Client();

$response = $client->request('POST', $this->getApiURL(), [
'headers' => [
'Content-Type' => 'text/xml; charset=UTF-8',
],
'body' => $postData,
]);

Expand Down

0 comments on commit b9e07aa

Please sign in to comment.