Can we identify the date on which someone liked my page?

末鹿安然 提交于 2019-12-24 17:53:19

问题


How can we identity the date on which someone liked my page.

is there any way where we can identify the date on which someone liked my page ?


回答1:


No. You can't even get a list of people that like your page, so you can't get a date they liked it. The only information you can get is how many people like it.

You can view a chart of how many people liked your page over time at Facebook Insights.




回答2:


Well no, You can make a graph call to the statuses and feeds of a user with valid access_token to get the id and name of the people who liked the post.. The timestamp can be found for the comments though ..

 {
         "id": "257821xxxxxxx",
         "from": {
            "name": "Maxxxxxx",
            "id": "100xxxxxx"
         },
         "message": "incredible ..",
         "updated_time": "2011-09-15T11:21:15+0000",
         "likes": {
            "data": [
               {
                  "id": "6xxxxxx6",
                  "name": "Axxxxxxxxxa"
               }
            ]
         },
         "comments": {
            "data": [
               {
                  "id": "257xxxxxxxxxxxx904",
                  "from": {
                     "name": "Maxxxxxxxxxxal",
                     "id": "1xxxxxxxxxxxxxx"
                  },
                  "message": "htxxxxxxxxxxxxxxxxxxxxxxxxxx",
                  "can_remove": true,
                  "created_time": "2011-09-15T11:22:06+0000"
               }
            ]
         }
      }


来源:https://stackoverflow.com/questions/7511543/can-we-identify-the-date-on-which-someone-liked-my-page

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!