【发布时间】:2012-08-15 09:33:28
【问题描述】:
我想使用 Graph API 来获取有关 URL 的一些信息。
它是这样工作的:
但是,当 URL 包含逗号时,事情就会变得复杂。对于
我们得到
http://graph.facebook.com/?ids=http%3A%2F%2Fwww.example.com%2Fname%2Csomething
什么给了我们:
{
"error": {
"message": "(#803) Some of the aliases you requested do not exist: something",
"type": "OAuthException",
"code": 803
}
}
如何使用 URL 来避免此类错误?
【问题讨论】:
标签: facebook facebook-graph-api