Reputation: 968
For example, from my website I want to link users to an entire search queries result page on Amazon.com rather than thinking them to just one specific product at a time.
Is it possible to do something like this?
http://www.amazon.com/s/?ref=sr_st?keywords=skates&qid=1363145953&rh=n:3375251,k:skates&sort=-price&tag=stackexample-20
As you can see I'm trying to land users on a search page for "skates", with the highest priced items at the top, and my affiliate ID in this case "stackexample-20"
Thanks in advance!
Upvotes: 1
Views: 2445
Reputation: 1391
2018: You could create a link like this (using jquery):
function createAmznLink (text) {
var amznLink = "<a href=http://www.amazon.de/s/field-keywords=" + text + "&tag=yourtag" + ">" + text + "</a>"
$('.linklist').append(amznLink);
}
createAmznLink('product');
Upvotes: 1
Reputation: 334
You can do searches using affiliate tags you are doing it above once you are on the page you will get commissions for the next 24 hours(i think) . Since the affiliate cookie is set on the browser of the user.
Upvotes: -2