vote up -2 vote down star

I am a newegg.com affiliate. Sometimes when a user wants to buy a camera they also want to buy a couple of accessories. I would like to make it so that they can click a button on my site, which would somehow add the camera and the accessories to their newegg shopping cart without requiring them to manually add each.

Following that, I'd like to send them to the shopping cart page so that they can review their order.

Is this possible? If yes how?

flag

67% accept rate
I don't think this is possible without actually showing the four pages. – Thorarin Jul 25 at 0:03
voted down cuz it seems like a shady thing to do. – JackM Jul 25 at 0:06
Can you use hidden IFRAME? – Adrian Godong Jul 25 at 0:06
This is not shady at all. The user will be aware that this is happening, and instead of them having to click 8 links, the will click 1. – quilby Jul 25 at 0:08
1  
I agree with Robert Harvey. It sounded sketchy, but I can see how that would actually be nice. If I were looking for a combo-pack purchase, and they were joined together in a single click. Awesome. Down-votters: re-think your choice on this one. It's not like a user could breeze through the checkout without taking note of the itemized list of puchases. – Kieveli Jul 25 at 1:17
show 5 more comments

closed as blatantly offensive by Greg Hewgill, Dana the Sane, Spencer Ruport, Noldorin, Rex M Jul 25 at 1:15

3 Answers

vote up 5 vote down check

OK, here's how you do it. You don't need to open new windows.

http://secure.newegg.com/NewVersion/shopping/AddtoCart.asp?Submit=ADD&itemList=N82E16827151153|1,N82E16811108059|1,N82E1 6820211064|1,N82E16822135106|1,Combo.62596|1&preitemList=

It looks like the vertical bar and number is a separator and then the quantity. The commas separate the part numbers.

You can test it by pasting the entire URL above into the browser.

On the website that I saw this technique, they were building a computer system out of component parts. It makes sense. By clicking one link, you get the entire configuration needed to build your system placed into a shopping cart at Newegg.

link|flag
Yes it works. Can you show me what website you found this on? Thanks! – quilby Jul 25 at 0:56
Google the URL I gave you. It will take you right to it. – Robert Harvey Jul 25 at 0:57
vote up 1 vote down

I think the ItemList parameter in the addtocart urls can take a comma delimited list of item ids, so you can do it all with one url, and NewEgg should automatically display the cart after it's added the items. I haven't tested though.

link|flag
Didn't seem to work for me. – Robert Harvey Jul 25 at 0:34
vote up 1 vote down

One idea is to open up minimized new browser windows, another is to connect and parse the set-cookie lines out of the http response and then set document.cookie to them.

You might be able to use XMLHttpRequest to fetch the new pages. According to http://www.w3.org/TR/XMLHttpRequest/ the cookies are supposed to be set.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.