See title.
Basically in
Example: Traffic Source XYZ, I have 3 accounts in that traffic source (each have different key/API for the postback URL)
I would like to just setup 1 Campaign, select XYZ traffic source in the campaign.
Then in separate XYZ account, I create the following:
XYZ 1, I take the campaign URL, and just use some token let's say &ididid=1
XYZ 2, I take the campaign URL, and just use some token let's say &ididid=2
XYZ 3, I take the campaign URL, and just use some token let's say &ididid=3
But later in
Is this possible?
Or I have no choice and need to create 3 traffic source in voluum, and 3 campaigns?
Thanks in advance!
From what i'm reading, there are 3 options:
1) Setup a manual callback per campaign (campaign-->advanced--> override callback)
2) Create a script to fire (global) postback to, which in it's turn split-fires all 3 callbacks on each conversion. (Only 1 callback should return status200)
3) Setup 3 traffic sources.
All have advantages and disadvantages.....
See PHP script below, if you have questions: ping me on Skype.
sjoerd.klinkhamer
-----------------------------------------------------------------------------------
<?
$parameters = "";
$partnerid = "";
foreach($_GET as $key=>$value) {
$parameters.="&$key=$value";
$$key = $value;
}
$str = 'http://example1.com'.$parameters;
echo '<hr>source 1: '.$str.'<br>';
echo 'parameters: '.$parameters.'<br>';
DoServerCall($str);
$str = 'http://example2.com'.$parameters;
echo '<hr>source 2: '.$str.'<br>';
echo 'parameters: '.$parameters.'<br>';
DoServerCall($str);
$str = 'http://example3.com'.$parameters;
echo '<hr>source 3: '.$str.'<br>';
echo 'parameters: '.$parameters.'<br>';
DoServerCall($str);
//--------------------------------------------------
function DoServerCall($str){
$ch = curl_init($str);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 10);
$result = curl_exec($ch);
curl_close($ch);
echo $str ."<br> SERVER RESPONSE: ";
echo $result ."";
}
?>