我使用 facebook 图形搜索来获取有关 url 的信息。所以我使用 url 作为搜索值。
几天以来,出了点问题,我不知道为什么?
大约 30% 的搜索值会抛出此错误:
{
"error": {
"message": "An unknown error has occurred.",
"type": "OAuthException",
"code": 1
}
}
这里有一个例子:
https://graph.facebook.com/search?q=poolhall.de&type=page <- 有效!
https://graph.facebook.com/search?q=pool-hall.de&type=page <- 错误!
唯一的区别:searchvalue
"poolhall.de" <-> "pool-hall.de"
另一个带有错误的 url 搜索“horje.de”
"horje.de" -> error, "horje" and "horje.com" etc -> no error!
但是为什么会抛出“OAuthExeption”呢?
API不需要授权!只需复制浏览器地址行中的 postet URL,您就会得到没有身份验证的结果。为什么某些搜索值会引发错误而其他搜索值有效?