Note that there are some explanatory texts on larger screens.

plurals
  1. POProgrammatically recording an Adword conversion
    text
    copied!<p>We have a problem of visitor qualification in our Adword campaign. Concretely, often a visitor that has no clue about what the software we sell does, still <em>download trial</em> (despite our attempt to explain him what it does, on landing pages) and count as a +1 recorded conversion in our Adword stats. Since Adword seems intelligent enough to maximize the conversions#, it ends up bringing us plenty of non-qualified visitors. Thus we need to define what is a conversion differently, sometime after the <em>download trial</em> operation.</p> <p>The option of defining conversion as a sale isn't good, because most of our users are professional employees. In such situation, most of the time the machine from where the product is purchased isn't the machine used for first download.</p> <p>The best conversion definition I can think of, would be a first successful run of our product (what we call <em>evaluation</em>). Indeed, by tracking what happened, we already asserted that only qualified visitor/dowloader do evaluate our product properly, most of the time on the same machine used for downloading the trial bits.</p> <p>Our product is a rich UI program developed with the .NET platform. To achieve <em>conversion recorded on evaluation</em>, we need to read programmatically all installed browsers cookies, (there is a free <a href="http://www.codeproject.com/Articles/330142/Cookie-Quest-A-Quest-to-Read-Cookies-from-Four-Pop" rel="nofollow">libraries</a> for that) and if we find a <strong>Adword Conversion Tracking cookie</strong> corresponding to our product, we can:</p> <ul> <li>Launch the concerned browser programmatically on a <em>Thanks for evaluating our product page</em> that contains the Adword conversion javascript (<em>in-browser</em> scenario).</li> <li>or, better if possible, ping back programmatically the Adword server with data found in the cookie (<em>out-of-browser</em> scenario).</li> </ul> <p>I'm not an expert on these technologies so I might be well missing something. Despite a lot of searches on the web I didn't find any valuable resource on such scenario. Any help would be appreciated.</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload