I have found a new way to quickly pre order with the help of an app named Postman. Postman is an app used by developers to test APIs but I have found a way to add to cart to these websites using a product ID using this application, which should make it much easier to pre order the Nintendo Switch tomorrow night.
This makes it much faster because after executing the Postman commands, the products should be added to your cart. After that, all you have to do is go to the checkout link for the respective websites (that I will also provide below). This removes all of the delays with actually playing around with the website.
Disclaimer: I have not tried this in a high-demand launch before, so I am not sure how it will work if there's a queue for the website.
I am not going to make a YouTube video but I will write a guide here.
When opening the extension, there are 2 tabs at the top. Click the "Sync Cookies" tab and paste the following. Press enter after each one. https://bestbuy.com
https://target.com
The purpose of interceptor is to sync cookies between your browser and your Postman Application, so products are added to the cart associated with your browser, not a new random cart
⌘ + N
will open a popup to create a new request. Click on http
GET
. Switch it to POST
. Paste https://www.bestbuy.com/cart/api/v1/addToCart
into the URL box.{
"items": [ // can add as many items as you want in this array
{
"skuId": "6470923" // SKU of item 1
},
{
"skuId": "5748618" // SKU of item 2
}
]
}