Skip to content

Instantly share code, notes, and snippets.

@paulschreiber
Created April 9, 2015 17:20
Show Gist options
  • Save paulschreiber/96f88a4cbb0d62cfe666 to your computer and use it in GitHub Desktop.
Save paulschreiber/96f88a4cbb0d62cfe666 to your computer and use it in GitHub Desktop.
Facebook User ID fetcher
#!/usr/bin/python
import requests
import re
url = 'https://www.facebook.com/zuck'
idre = re.compile('"entity_id":"([0-9]+)"')
page = requests.get(url)
print idre.findall(page.content)
# One-liner
# python -c 'import requests, re; print re.findall("\"entity_id\":\"([0-9]+)\"", requests.get("https://facebook.com/zuck").content)[0] + "\n"'
@DM-ahmedelsayed
Copy link

Is there a way to verify a set of numbers in a file to see who has a Facebook account?
Using python

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment