在过去的两个月里,我一直在正常使用 Graph API,但突然发生了一些奇怪的事情。
我有以下网址:
https://graph.facebook.com/search?access_token=
{$access_token}&q=obama&type=page
发生的情况是,当我使用与过去两个月一直在使用的帐户相关的访问令牌时,它根本不会返回与该关键字相关的最受欢迎的页面。这是回报:
{
"data": [
{
"id": "593850270658078",
"name": "Obama - The Worst President",
"category": "Public figure",
"likes": 16133,
"talking_about_count": 27276
},
{
"id": "363569443676394",
"name": "2016: Obama's America",
"category": "Movie",
"likes": 291045,
"talking_about_count": 8406
},
{
"id": "524144210948251",
"name": "Obama Won! U MAD?",
"category": "Comedian",
"likes": 93222,
"talking_about_count": 17931
},
{
"id": "249903348378912",
"name": "Obama Makes Me Puke",
"category": "Just for fun",
"likes": 85377,
"talking_about_count": 232842
},
{
"id": "215380238549857",
"name": "ObamaWear",
"category": "Clothing",
"likes": 5771,
"talking_about_count": 4
},
{
"id": "434951966574117",
"name": "Obamagump.com",
"category": "Political organization",
"likes": 2336,
"talking_about_count": 686
},
{
"id": "235805483212602",
"name": "ObamaCalls",
"category": "Website",
"likes": 1849,
"talking_about_count": 7
},
{
"id": "475266032570062",
"name": "Obama, stay away from SYRIA",
"category": "Community",
"likes": 712,
"talking_about_count": 531
}, ....
但是,当我尝试使用来自不同 Facebook 帐户的访问令牌时,它会从最受欢迎的页面开始返回结果,直到今天其他帐户都在发生这种情况。这是结果:
{
"data": [
{
"id": "6815841748",
"name": "Barack Obama",
"category": "Politician",
"likes": 36654370,
"talking_about_count": 563401
},
{
"id": "22092775577",
"name": "Michelle Obama",
"category": "Public figure",
"likes": 10006156,
"talking_about_count": 122888
},
{
"id": "250438165090859",
"name": "Malia Obama.",
"category": "Public figure",
"likes": 439221,
"talking_about_count": 78225
},
{
"id": "325578590837480",
"name": "Obamacare",
"category": "Community",
"likes": 515138,
"talking_about_count": 23672
},
{
"id": "424717587573142",
"name": "Bardock Obama",
"category": "Comedian",
"likes": 151115,
"talking_about_count": 55308
},
{
"id": "593850270658078",
"name": "Obama - The Worst President",
"category": "Public figure",
"likes": 16121,
"talking_about_count": 21111
},
{
"id": "363569443676394",
"name": "2016: Obama's America",
"category": "Movie",
"likes": 291045,
"talking_about_count": 8406
},
{
"id": "296856040436954",
"name": "Obama is the Worst President in US History",
"category": "Community",
"likes": 693421,
"talking_about_count": 108681
},
{
"id": "214488188596423",
"name": "Impeach Obama",
"category": "Cause",
"likes": 98256,
"talking_about_count": 25708
}, ....
我注意到我经常使用的其他关键字也发生了同样的情况。
有人可以帮助我了解发生了什么吗?