VINE Bot?

Phone apps in general are hard to automate,Whoever said most of them use standard http requests is a tard...I would really like to see an example..Not a shitty imacro script,virtual machine with coordinate clicking,etc..Sockets..
 
Phone apps in general are hard to automate,Whoever said most of them use standard http requests is a tard...I would really like to see an example..Not a shitty imacro script,virtual machine with coordinate clicking,etc..Sockets..


Nice try fishing for code ;). That being said, I know this snippet will make you ask more questions than give you answers. What do they say on League again? "huehuehuehue"?



Code:
import requests

if __name__ == '__main__':
    r = requests.get(API_SERVER + "/REDACTED/popular",headers=VINE_AUTH_HEADERS,proxies=VINE_PROXIES)
    if r.status_code == 200:
        response = json.loads(r.text.decode('utf8'))
        if response['success'] == True:
            for vine in response['data']['records']
                print "Post by " + vine['user']['username'] + " with a postId of: " + vine['postId']
        else:
            print "Didn't work."


Pic related. It's me right now with all of my sweet, sweet Vine bots.

trytofly.gif
 
Nice try fishing for code ;). That being said, I know this snippet will make you ask more questions than give you answers. What do they say on League again? "huehuehuehue"?



Code:
import requests

if __name__ == '__main__':
    r = requests.get(API_SERVER + "/REDACTED/popular",headers=VINE_AUTH_HEADERS,proxies=VINE_PROXIES)
    if r.status_code == 200:
        response = json.loads(r.text.decode('utf8'))
        if response['success'] == True:
            for vine in response['data']['records']
                print "Post by " + vine['user']['username'] + " with a postId of: " + vine['postId']
        else:
            print "Didn't work."



Hey,
Can you make a bot??? I want it.
 
I have programed a vine bot already. Used to be quite easy to exploit as they had no account creation prevention, but they added some in now. I have gotten over 10 videos to number one on the popular page.

Im looking to just auto like posts. If your bot does this and your willing to sell/share, please lmk. thank you
 
No web login or api sounds too much work for me! Even with Blue stack seems alot of work, also they emulator of the andriod is now getting out of date if I'm not correct!
 
Nice try fishing for code ;). That being said, I know this snippet will make you ask more questions than give you answers. What do they say on League again? "huehuehuehue"?



Code:
import requests

if __name__ == '__main__':
    r = requests.get(API_SERVER + "/REDACTED/popular",headers=VINE_AUTH_HEADERS,proxies=VINE_PROXIES)
    if r.status_code == 200:
        response = json.loads(r.text.decode('utf8'))
        if response['success'] == True:
            for vine in response['data']['records']
                print "Post by " + vine['user']['username'] + " with a postId of: " + vine['postId']
        else:
            print "Didn't work."


Pic related. It's me right now with all of my sweet, sweet Vine bots.

trytofly.gif

It's really good that they don't encrypt anything(just checked if there is an android app for Vine..OHH there is!! so no worries)..even a simple post request, they will welcome you with open arms lol..I wonder when they will be jumping to spam here too..
 
Is Vine profitable? It doesn't seem to me like there's much longevity with that site.
 
i make big profit with vine.
best step.
instagram is dead.
 
I have a vine bot that I'm working on right now. I'm planning to release the bot through the BST section here as soon as I'm done and my thread has been approved. The bot can manage several accounts, register new accounts, comment, like/unline, follow/unfollow, search and more. Currently working on direct video uploads directly from the application, which should be completed around this week.

Cheers
 
If ever I would see a Vine bot BST, I will release my own bot for free. So guys, be happy :)
 
If ever I would see a Vine bot BST, I will release my own bot for free. So guys, be happy :)

Thats cool, feel free to do that.
Some folks will pick a free product, some will pick support and updates, etc.
Looking forward to seeing your implementation.

Cheers
 
Back
Top