Call Examples

PHP <?php // Initialize cURL and make the request $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, ‘https://api.adgem.com/v1/all/campaigns?&appid=ADGEM_APP_ID&token=ADGEM_API_TOKEN’); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $response =...

Call Examples

PHP <?php // Initialize cURL and make the request $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, ‘https://api.adgem.com/v1/wall/json?appid=ADGEM_APP_ID&playerid=PLAYER_ID’); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $response =...