So I'm finally getting around to that basement remodel I've been talking about for like two years—super stoked to finally get the media room set up. I've got a budget of about $3,000 for the electronics and lighting alone, and I've spent the last three nights meticulously picking out everything on Amazon. We’re talking smart dimmers, high-speed HDMI cables, those specific 4K projector mounts, and a bunch of bulk CAT6. The problem is my cart is now sitting at like 45 items and I need my contractor to double check the specs before I pull the trigger next Tuesday.
I've been a Prime member since like 2010 so I know how the standard stuff works but this has me stumped. I tried the "Share List" feature but it's such a pain because some of the stuff in my cart is limited-time deals and moving them to a list seems to lose the specific quantities I set or those little coupon clips you have to check. Plus, my logic was that if I could just send a direct link to the active cart, he could just look at the manifest in one go without me having to screenshot five different pages. I remember seeing someone mention some third-party extensions or apps like Share-A-Cart or something similar that lets you bundle the whole cart into a single code or URL?
I’m a bit nervous about the security side of it though. Like, does a third-party app need my login cookies to work? Or is it just scraping the DOM of the checkout page? I'm usually pretty tech-savvy but this specific "share the cart" thing is a new hurdle for me. I really don't want to add my contractor to my Amazon Household for obvious reasons lol. Has anyone used one of these apps recently? I want something that’s actually reliable and wont mess up the quantities or leave out the specific vendors I picked. If there's a better way to do this through an API or some weird workaround I haven't thought of, let me know...
Good to know!
Yep, this is the way
^ This. Also, just catching up on this thread and I love that you're being so careful about security!! Honestly, I was in the exact same boat last month when we did our home office. I'm a total newbie with these extensions and was super paranoid about my login info getting leaked. I compared Cart To Link and Share-A-Cart and felt like the second one was the most reliable choice for a beginner like me because it doesnt touch your actual account data!! A few things to watch out for tho because I almost messed up:
Huh interesting. I had no idea. The more you know I guess 🤷
> I remember seeing someone mention some third-party extensions or apps like Share-A-Cart or something similar that lets you bundle the whole cart into a single code or URL? Yeah, Share-A-Cart is basically the standard for this and I definitely agree it is the way to go. I used it last month for a server rack build and it handled all 28 SKUs without dropping the specific vendors or quantities. Most of these extensions work by generating a unique ID for your cart data on their server, then reconstructing it for the recipient on the other end. Regarding your security concern, they usually dont need your actual login session. It just reads the item IDs and quantities from your active page. Its way more efficient than lists because it preserves the exact cart state. One thing to watch out for tho is that coupons might not always carry over if they are tied to your specific account profile, but for technical specs and manifest checking with a contractor, its solid.
TL;DR: Security-wise, these extensions usually just parse the DOM for ASINs and quantities to generate a manifest, so they dont touch your actual session data or credentials. I do this kind of thing for my own server builds and rack setups all the time. Quick question tho to help narrow it down: are you looking for a persistent link that updates if you swap out a component, or just a one-time static export for the contractor? Also, does he need to be able to push his own suggestions back into the cart or is he just verifying the specs on the items you already picked? Different tools handle the data payload differently depending on if its a simple redirect or a full cart import. There's a neat extension called Cart To Link that basically turns your cart into a link.
Re: "> I remember seeing someone mention some third-party..."