The Most Active and Friendliest
Affiliate Marketing Community Online!

“Adavice”/  “1Win

Help! Bemob and Adcombo Conversion tracking

hello,
i have created a custom landing page to promote Adcombo offer using their API.
that means visitor can order product from my landing without redirecting to the vendor website.
but i don't understand how to track conversion with bemob?
please help me..
 
Thanks for your reply.
According to Adcombo Incoming orders API: vendor need clickid to get in it postbck.
at this point how can i catch ClickID from my landing Page?
i have used $_GET['clickid'] and $_GET['visitor_id'] but didn't work.
// you can add any extra field to get it in postback
'clickid' => 'INSERT YOUR CLICK ID',
<?php
const API_URL = "https://api.adcombo.com/api/v2/order/create/";
const API_KEY = "";
$isCurlEnabled = function(){
return function_exists('curl_version');
};
if (!$isCurlEnabled) {
echo "<pre>";
echo "pls install curl\n";
echo "For *unix open terminal and type this:\n";
echo 'sudo apt-get install curl && apt-get install php-curl';
die;
}
$args = [
'api_key' => 'INSERT API_KEY(GET IT FROM MANAGER)',
'name' => 'INSERT NAME',
'phone' => 'INSERT PHONE',
'offer_id' => INSERT OFFER ID FROM my.adcombo.com,
'country_code' => 'INSERT 2 LETTER COUNTRY CODE',
'price' => INSERT PRICE FROM LANDING,
'base_url' => 'http://my-domain.com/',
'ip' => 'INSERT CLIENT'S IP ADDRESS',
'referrer' => 'http://my-click-site.com',
'subacc' => 'INSERT SUBACCOUNT 1',
'subacc2' => 'INSERT SUBACCOUNT 2',
'subacc3' => 'INSERT SUBACCOUNT 3',
'subacc4' => 'INSERT SUBACCOUNT 4',
'utm_campaign' => 'INSERT utm_campaign',
'utm_content' => 'INSERT utm_content',
'utm_medium' => 'INSERT utm_medium',
'utm_source' => 'INSERT utm_source',
'utm_term' => 'INSERT utm_term',
// you can add any extra field to get it in postback
'clickid' => 'INSERT YOUR CLICK ID',
];
$url = API_URL.'?'.http_build_query($args);
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => $url,
CURLOPT_RETURNTRANSFER => true
));
$res = curl_exec($curl);
curl_close($curl);
$res = json_decode($res, true);
if ($res['code'] == 'ok') {
echo $res['msg'] . ": " . $res['order_id'];
} else {
echo $res['error'];
}
 
if your landing page used to create a lead than you need setup is as the offer not as the landing page in bemob... and then pass the clickid param at the bemob to the offer ..... clickid should be can capture
 
at this point how can i catch ClickID from my landing Page?
i have used $_GET['clickid'] and $_GET['visitor_id'] but didn't work.

?clickid=12345&visitor_id=1098765 has to be the query string in the landing page URL
Those instruction require PHP
PHP:
$cid=$_GET['clickid'];
$vid=$_GET['visitor_id'];
//test
echo "$cid\n<br>$vid<br>";
12345
1098765

you need to have PHP & PHP curl installed but you are not a 'vendor'

Postback settings look at this page #4 this is a simple GUI tool for the affiliate -- what I gave you is for the network to cURL (get the vendor's postback for you)
5b3a738-13.gif
 
Hello,

As I can see, you have discussed the same issue in our live chat with your support manager Irena.
It looks like you need to place your landing page URL in Offers Section on the side of tracker and set up the postback tracking with Adcombo.
2019-11-06_14-28-43.png



Make sure you have added Adcombo from the BeMob preconfigured templates. In this case when selecting Adcombo from the list in offer settings, the click ID settings will be automatically preconfigured and there will be no need to add &clickid={clickId} to each offer link you are adding from Adcombo.

2019-11-06_14-32-21.png

If you have any question or need help with the settings, feel free to contact our support team.

Live Chat - the message window that appears in the right corner of the screen on our website
Email - support@bemob.com
Skype - live:anna_17683 or live:irenatomanov
Telegram - @bemob
 
Really you are great! Thank you..
Hello,

As I can see, you have discussed the same issue in our live chat with your support manager Irena.
It looks like you need to place your landing page URL in Offers Section on the side of tracker and set up the postback tracking with Adcombo.
View attachment 15380


Make sure you have added Adcombo from the BeMob preconfigured templates. In this case when selecting Adcombo from the list in offer settings, the click ID settings will be automatically preconfigured and there will be no need to add &clickid={clickId} to each offer link you are adding from Adcombo.

View attachment 15384
If you have any question or need help with the settings, feel free to contact our support team.

Live Chat - the message window that appears in the right corner of the screen on our website
Email - support@bemob.com
Skype - live:anna_17683 or live:irenatomanov
Telegram - @bemob
 
banners
Back