Advertisement
Billal1412

find id with url facebook

Dec 29th, 2019
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. import requests, re
  2.  
  3. url = input("Masukan Link Facebook: ")
  4. r=requests.get(url)
  5. c=re.findall('<meta property="al:ios:url" content="fb://profile/(.*?)" />',r.text)
  6. for a in c:
  7. print ("ID anda adalah : "+a)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement