Skip to content Skip to sidebar Skip to footer

Logging To Instagram Using Python Requests

I am trying to write a script in python, to log into http://insta.friendorfollow.com/ and get the list of the people that are not following back. I want to use 'requests module', s

Solution 1:

All is fine now,

#!/usr/bin/env python

username = "username"
password = "password"from selenium import webdriver
from selenium.webdriver.common.keys import Keys
import re

driver = webdriver.PhantomJS()
driver.get("http://insta.friendorfollow.com")
driver.find_elements_by_tag_name("a")[1].click()

print"Perimene file....".upper()
driver.find_element_by_name('username').send_keys(username)
driver.find_element_by_name('password').send_keys(password)
driver.find_element_by_class_name("button-green").click()

try:
  driver.find_elements_by_name("allow")[1].click()
except:
  pass

f = open(username+".txt", 'w')
malakes = re.findall(ur'data-id=\"([0-9]*)\"', driver.page_source)[::-1]
for malakas in malakes:
  print >> f, malakas

f.close()
driver.quit()

Solution 2:

I had success in getting the list. I did a GET to http://insta.friendorfollow.com/following/ with appropriate authentication and I can see the users in the Response.

Here's an example of one of the users that are not following me (Floyd seems to not be interested in my posts)

style="margin:5px" alt="floydmayweather" title="floydmayweather" src="http://images.ak.instagram.com/profiles/profile_16264572_75sq_1394805311.jpg" data-id="16264572" data-action="unfollow"

and some other stuff.. So try adding /following to your URL

Post a Comment for "Logging To Instagram Using Python Requests"