fork download
  1. # your code goes here tivestiane
Success #stdin #stdout 0.02s 7044KB
stdin
import facebook
graph = facebook.GraphAPI(access_token='رقم_التوكن', version='3.1')
graph.get_object(id='رقم_المستخدم', fields='name,email')
```
أو
```
import requests
url = "https://g...content-available-to-author-only...k.com/me?fields=name,email&access_token=رقم_التوكن"
response = requests.get(url)
```
stdout
Standard output is empty