I'm a 17yr old student that has some experience in Python/Java, hopefully I'll be able to pick up Obj-C pretty easily. I want to build a Twitter Sneaker Bot Application.
The user will choose the shoe they want and it'll crawl the Nike Twitter page and once the keyword is crawled it'll give the user a notification that'll take them to the link in the browser. It'll only crawl at a specified time period, it won't be constantly. Probably only 5-10 minutes before Nike would usually tweet the link (8amEST). I've been looking at Amazon's EC2 Instance to act as the parsing server.
Here's an example: https://twitter.com/nikestore/status/429600294146949120/photo/1
The app would crawl for "Melo 1.5". (See Twitter link to know what I'm talking about)
What I'm confused about is actually adding the shoe to the cart. This is very easy to do in Javascript with a small snippet of code.
$(".selectBox.exp-pdp-size-dropdown.exp-pdp-dropdown.selectBox-dropdown").focus().mousedown().mouseup();
I couldn't even imagine how to manipulate any data on browser within an app such as adding the product to your cart.
Any help would be appreciated.
Thanks.
The user will choose the shoe they want and it'll crawl the Nike Twitter page and once the keyword is crawled it'll give the user a notification that'll take them to the link in the browser. It'll only crawl at a specified time period, it won't be constantly. Probably only 5-10 minutes before Nike would usually tweet the link (8amEST). I've been looking at Amazon's EC2 Instance to act as the parsing server.
Here's an example: https://twitter.com/nikestore/status/429600294146949120/photo/1
The app would crawl for "Melo 1.5". (See Twitter link to know what I'm talking about)
What I'm confused about is actually adding the shoe to the cart. This is very easy to do in Javascript with a small snippet of code.
$(".selectBox.exp-pdp-size-dropdown.exp-pdp-dropdown.selectBox-dropdown").focus().mousedown().mouseup();
I couldn't even imagine how to manipulate any data on browser within an app such as adding the product to your cart.
Any help would be appreciated.
Thanks.