How do I query links shared by Facebook Pages?
问题 I can get a user's page/likes list using the graph /me/likes. But how can I return a list of links shared by these Pages? For example, let's say a user likes the Facebook Platform Page. I can pull this id ( 19292868552 ) using the /me/likes graph api. But how can I pull the links that the Facebook Platform Page has shared on their page? For a regular user you would do something like this: Sample FQL: SELECT link_id, title, summary, url FROM link WHERE owner IN (19292868552); But for Facebook