ATTENTION! If the system consistently requires authorization and this disturbing you from working please check if you have cookies enabled in your browser.
In the Microsoft Internet Explorer In the "Tools" menu, select "Internet Options", then go to on the "Privacy" tab and check if you have cookies enabled. Recommended security level - medium.
In the Opera browser, on the File menu -> "Quick Settings", check whether the checkmark next to "Enable cookies" is checked.
If you have any questions, please contact the support.
campaign/get_instruction_variants
For advertising campaigns where it is possible to select an instruction option, the method returns a list of valid instructions.
<?php $post = array( 'token' => $token, 'type' => 'share_telegram', ); if ($curl = curl_init()) { curl_setopt($curl, CURLOPT_URL, 'https://www.ipweb.ru/api/v2/campaign/get_instruction_variants'); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); curl_setopt($curl, CURLOPT_POST, true); curl_setopt($curl, CURLOPT_POSTFIELDS, $post); $out = curl_exec($curl); echo $out; curl_close($curl); } // Result: { "1": "Сделайте репост этой записи другу или в свой канал (по стрелке справа от поста, либо правой кнопкой мыши, затем \"Переслать сообщение\"), сделайте скриншот, подтверждающий репост (в программе Telegram)", "2": "Сделайте репост любой записи, которая есть на канале, другу или в свой канал (по стрелке справа от поста, либо правой кнопкой мыши, затем «Переслать сообщение»). Сделайте скриншот, подтверждающий репост (в приложении Telegram)." }