Anyone know if its possible to add more than 1 unique Postback URL (Server Pixel) to an offer on the Cake platform?
Thanks
Yes, you can add one (!) s2s postback Pixel but multiple HTML pixels (img, Iframe, whatever HTML Code you want to insert).
I have coded a script to handle my postbacks in PHP, so I can decide what I want to do with the data.
Edit: your mean when you are an affiliate, right?
you can also do multiple s2s postbacks like this:
create a php file called "postback.php":
<?php
$id = $_GET['clickid'];
$price= $_GET['payout'];
file('http://yourfirstpostbackurl.com/postback?cid='.$id.'&payout='.$price);
file('http://yoursecondpostbackurl.com/postback?cid='.$id.'&payout='.$price);
?>
All methods mentioned above work.
If you are on Prosper202, you can list multiple postback urls (separated by a space) for your traffics source in step 1. When the P202 postback is fired it will fire all the other postbacks too.
Thanks guys, much appreciated.
Thrive can also handle multiple post-backs through firing one single post-back.
You can add unlimited 3rd-party post-backs to piggy-back off of one Thrive post-back.
You can also add traffic source post-backs or campaigns-specific post-backs.