I have a facebook app that I would like to get the total number of "likes" from. I am wondering if this is even possible.
where ID is the app's id and ACCESS_TOKEN is the current access token for the app I have tried:
graph.facebook.com/IDwhich returns the basic json information for the app but does not include likes.graph.facebook.com/ID/likes?access_token=ACCESS_TOKENwhich returns an empty tuple of data, ie.{"data":[]}. The page has been liked and this tuple doesn't change when I like the application.
Is there any way to get the total likes for an app from facebook and if so what is the api call?
edit: if it helps to clarify the url for the page that I am trying to get likes from is http://www.facebook.com/apps/application.php?id=ID&sk=PAGE_NAME
graph.facebook.com/?id=ID&sk=PAGE_NAMEand it returns the same thing asgraph.facebook.com/ID– Daniel Nill Jul 27 '11 at 15:18