发送支付网关响应到requestb.in

时间:2019-08-16 03:22:56

标签: php wordpress woocommerce

我已经开发了一个自定义的支付网关插件,目前我可以找到,但是我仍然需要捕获网关对requestb URL的响应。

我设法通过wp_mail发送回复,

if (isset($_GET['wc-api']) && $_GET['wc-api'] == 'woocommerce_mpay') {
    wp_mail('email@gmail.com','API Response', json_encode($_GET['result']));
    /** need to trim from result **/
    $Url_result = $_GET['result'];

    $order = new WC_Order( (int) substr($Url_result,7,20) );

    $tranID = (int)substr($Url_result,1,6);



    if (substr($Url_result,0,1) == '0'){

        $r_status = 0;

    }else{

    $r_status = 33;

    }

但我仍然希望它位于requestbin网址上。

0 个答案:

没有答案