Как перенаправить на другую ссылку после отправки ответа JSON - PullRequest
0 голосов
/ 03 мая 2019

Я делаю API Restful с codeigniter-restserver, чтобы получить POST-запрос с другого сайта, сценарий - после отправленного ответа. Json, я должен перенаправить на другой сайт, чтобы подтвердить, что я получил Transactions_id и signature_id

мой код такой

/ untuk menambah person menaggunakan method post
        public function notification_post(){
            //untuk menerima data
            $result = json_decode(file_get_contents('php://input'), true);

            $order_id                   = $result['order_id'];
            $transaction_id         = $result['transaction_id'];
            $signature_key          = $result['signature_key'];

            $response = $this->km->confirm_payment(
                    $order_id,
                    $transaction_id,
                    $signature_key
                );

            $this->response($response);

            //sent to v2/update
            $confirm_order = array(
                'transaction_id' => $transaction_id,
                'signature_key'  => $signature_key,
            );


            //redirect ke halaman confirm
            $link = 'http://68731fea.ngrok.io/matoa-admin/transaksi/confirm';

            redirect($link, 'location');
        }

проблема в том, как я могу перенаправить на $ link после отправки $ this-> response ($ response);

enter image description here

...