Home > Technical & Creative Skills > Tracking Campaigns

Multiple Postbacks (6)


03-04-2015 12:11 AM #1 riverdog (Member)
Multiple Postbacks

Anyone know if its possible to add more than 1 unique Postback URL (Server Pixel) to an offer on the Cake platform?

Thanks


03-04-2015 12:37 AM #2 deedsmedia (Member)

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?


03-04-2015 06:17 AM #3 andyvon (AMC Alumnus)

you can also do multiple s2s postbacks like this:

create a php file called "postback.php":

Code:
<?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);
?>
The 2 postback URLs are how Voluum uses them, if you use a different tracker you obviously have to change them accordingly.

Now in Cake you would use the following as your postback URL: http://yourserverurl.com/postback.ph...payout=#price#


03-04-2015 02:58 PM #4 Mr Baffoe (Veteran Member)

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.


03-04-2015 03:44 PM #5 riverdog (Member)

Thanks guys, much appreciated.


03-04-2015 04:50 PM #6 ThrvTrkr (Member)

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.


Home > Technical & Creative Skills > Tracking Campaigns