Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- $curl = curl_init();
- curl_setopt_array($curl, array(
- CURLOPT_URL => "http://appapiauth.cskh.npc.com.vn/api/v1/customerindex?code=xxxxxxxxxx&month=12&year=2019&size=24",
- CURLOPT_RETURNTRANSFER => true,
- CURLOPT_ENCODING => "",
- CURLOPT_MAXREDIRS => 10,
- CURLOPT_TIMEOUT => 0,
- CURLOPT_FOLLOWLOCATION => true,
- CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
- CURLOPT_CUSTOMREQUEST => "GET",
- CURLOPT_HTTPHEADER => array(
- "accept: application/json;charset=UTF-8",
- "accept-encoding: gzip",
- "authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhdWQiOlsidGVzdGp3dHJldc291cmNlaWQiXSwiZXhwIjoxNTg3NTgzMjg5LCJ1c2VyX25hbWUiOiJQQTAxWVkwMDAwOTYxIiwianRpIjoiYjQ0N2FlZjAtNGU4My00YzhlLTg3Y2YtZThNDAzYjAyY2JlIiwiY2xpZW50X2lkIjoidGVzdGp3dGNsaWVudGlkIiwic2NvcGUiOlsicmVhZCIsIndyaXRlIl19.mXRCMF2bJpI3cdYhm9h63ckGpyy0F8TDbQC3z2jGu48",
- "connection: Keep-Alive",
- "content-type: application/x-www-form-urlencoded",
- "host: appapiauth.cskh.npc.com.vn",
- "user-agent: okhttp/3.8.0",
- "x-channel-id: android"
- ),
- ));
- $response = curl_exec($curl);
- curl_close($curl);
- echo $response;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement