-
-
Save xnohat/f675ba7a582a2a9d4d1da65d44e28701 to your computer and use it in GitHub Desktop.
Facebook User ID fetcher
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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"' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment