Good time, recently, Qiwi turned off its payment system for online stores (those who managed to connect did not touch everything works) sent the interface for revision, in exchange for offering a simplified interface documentation system here -> http://qiwi.kz/static/data/ how-to-become-provider / interface_podkl_usl.pdf I am not strong at sending such things, I connected the old system, but I can’t figure it out with the new one yet, I ask for help on this. First of all, I decided to test sending a request for a payment check - I decided to implement it in php (here I may be mistaken and need a different jquery, for example, correct it if it’s not right) I do everything like this according to the documentation:

$payparams = array( 'command' => 'check', 'txn_id' => '1234567', 'account' => '4957835959', 'sum' => '200.00' ); $myCurl = curl_init(); curl_setopt_array($myCurl, array( CURLOPT_URL => 'https://service.someprv.ru:8443/payment_app.cgi', CURLOPT_RETURNTRANSFER => true, CURLOPT_POST => true, CURLOPT_POSTFIELDS => http_build_query(array($payparams)) )); $response = curl_exec($myCurl); curl_close($myCurl); echo "Ответ: ".$response; 

But for some reason, the answer does not come, just for the test I tried to use their test service -> http://www.qiwi.kz/ru/provider-test/ but also all the same - an error, since apparently the interface was recently launched on the Internet apart from the documentation of kiwi, I did not find any examples, maybe someone has already done this? Tell me please!

  • https://service.someprv.ru:8443/payment_app.cgi is a dummy link, for example. Most likely, you need to get from Kiwi a link to their API. - Konstantin Mitjurin
  • @Konstantin Mitjurin yes) reached) I basically figured out almost to the end how to tune in the last nuances - I will try to lay out a detailed implementation here, otherwise there isn’t something like Google, since they have launched a new system - it may be useful to someone else - dantelol

0