What permission(s) do I need to read the names of the users who posted to a Facebook page?
问题 I want to write a Python script that reads the names of the Facebook users who wrote a message on my Facebook Page. I'm using the facebook-sdk Python library. The lines graph = facebook.GraphAPI(page_access_token) profile = graph.get_object(profile_id) posts = graph.get_connections(profile['id'], 'feed') print(posts['data'][0]['message']) print(posts['data'][0]['from']['name']) work fine when I use a short-lived access token retrieved by just copying it from the Graph API explorer. But when I