Looking at the bottom of this page it would appear that it is possible to get facebook data on where likes are coming from for a particular page. Unfortunately I can't figure out how to do this.

Ideally I would like a method that doesn't use fql something like:

https://graph.facebook.com/PAGE_ID/insights/SOURCE_NAME?access_token=ACCESS_TOKEN

But if that's not possible I would at least think it is possible to do through fql using something like:

https://api.facebook.com/method/fql.query?query=SELECT metric, value FROM insights WHERE object_id=PAGE_ID AND metric='SOURCE_NAME' AND period = period('month')&access_token=ACCESS_TOKEN

but this just returns the xml with the error message Invalid metric name: SOURCE_NAME for whatever source name I'm trying to use.

What is the proper way to access this data? Or is facebook just trying to tease me?

link|improve this question

78% accept rate
feedback

2 Answers

up vote 1 down vote accepted

The query I was looking for was something like

https://api.facebook.com/method/fql.query?query=SELECT metric, value FROM insights WHERE object_id=OBJECT_ID AND metric='page_fans_by_like_source' AND period_end=TIME_STAMP AND period = period('month')&access_token=ACCESS_TOKEN
link|improve this answer
feedback

See the 'ref ' note on http://developers.facebook.com/docs/reference/plugins/like/ - I'm not sure this information is actually available in insights but it is passed to your site via the referrer URL when the user clicks a link to your site which was generated because of the user of a Like button

link|improve this answer
The documentation on the link that I post would suggest that it is available. All other columns listed on that page are available through the api but the sources don't seem to be, at least not in the same way. – Daniel Nill Dec 9 '11 at 17:06
That's a table of possible values which are returned as source when querying for page_fans_by_like_source_unique and page_fans_by_like_source , no? I misunderstood your question , but i'm still not sure what you're asking, what are you putting in as 'SOURCE_NAME" in your query? – Igy Dec 9 '11 at 17:14
SOURCE_NAME would be any of the values in the "like Sources" table at the bottom of the page I linked to eg. page_suggestion or timeline or ads etc. Using the fql I gave you can replace SOURCE_NAME with something like post_impressions_unique and it will return data, but anything from the like sources table doesn't return anything. – Daniel Nill Dec 9 '11 at 17:27
Alright, I apologize. After a more careful reading it appears that the query I am looking for is roughly https://api.facebook.com/method/fql.query?query=SELECT metric, value FROM insights WHERE object_id=OBJECT_ID AND metric='page_fans_by_like_source'&access_token=ACCESS_TOKEN. Now I just need to figure out how the time periods work for this query. If you want to edit your answer I'll mark it as correct. – Daniel Nill Dec 9 '11 at 18:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.