Last active
September 1, 2017 18:29
-
-
Save lamguy/4aa945411dea6198a60af35ef8d9876e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$url = 'https://devicecheck.gsma.com/imeirtl/detailedblwithmodelinfo'; | |
//INITIATE cURL | |
$ch = curl_init($url); | |
//CREATE PAYLOAD | |
$payload = array( | |
'imeinumber' => "455121154565151, | |
'username' => $username, | |
'apikey' => $apikey); // this is not password | |
// SET CURL URL | |
curl_setopt($ch, CURLOPT_HEADER, 0); | |
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 0); | |
//DESIGNATE AS A POST REQUEST | |
curl_setopt($ch, CURLOPT_POST, 1); | |
curl_setopt($ch, CURLOPT_RETURNTRANSFER , 1); | |
//ATTACH ENCODED JSON STRING TO POST | |
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($payload)); | |
// Timeouts | |
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 3); | |
curl_setopt($ch, CURLOPT_TIMEOUT, 3); | |
//EXECUTE REQUEST | |
$rawResponse = curl_exec($ch); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment