Is there anyway to get the total number of times an object has been liked in the Open Graph?
I'm referring to the new Like action: http://developers.facebook.com/docs/opengraph/actions/builtin/likes/
Is there anyway to get the total number of times an object has been liked in the Open Graph?
I'm referring to the new Like action: http://developers.facebook.com/docs/opengraph/actions/builtin/likes/
The new Built-In Like is the same action as a normal Like. You query them the same way.
You could query the Graph API:
http://developers.facebook.com/tools/explorer?method=GET&path=%3Fids%3Dhttp%3A%2F%2Fwww.yourpage.com
Or, you could do an FQL Query:
SELECT url, id, type, site FROM object_url WHERE url = "http://www.yourpage.com"
Note: