Getting all the likes in my domain (facebook)

I'm trying to get statistics on what I like in my domain. I would like everything to be liked (if possible, with user IDs) for all pages of my domain (which have tens of thousands of pages)

What returns domain_like_adds?

SELECT metric, value FROM insights WHERE object_id = [domain-id] AND metric = 'domain_like_adds' AND END_TIME = end_time_date ('2011-01-03') And period = period ("month")

Returns empty, does anyone know what domain_like_adds data is returned?

Regards, Niklas

+4
source share
2 answers

I donโ€™t think that you will get user identifiers in any way, since this is a serious invasion of privacy, but I believe that domain_like_adds indicates how much NEW your domain received over a given period of time likes, unlike cumulative likes your domain earned up to this point. There is no viable way to determine the number of similar objects in your domain at all times without tracking from the beginning and / or return and summation of historical data.

+1
source

You can do sitemap.xml of your site and crawl URLs against the Facebook API. I actually made a Ruby script to do this: http://bobbelderbos.com/2012/01/ruby-script-facebook-like-stats-blog/ . I donโ€™t think that you can get users who โ€œlikedโ€ your pages, but this script can be useful to find out which URLs are the most popular.

+1
source

Source: https://habr.com/ru/post/1334904/


All Articles