我正在尝试使用Graph API获取消息附件,但正在获得此响应:
{
"error": {
"message": "(#803) Some of the aliases you requested do not exist: 8e48235f4d403ddfad3397ade73ed743",
"type": "OAuthException",
"code": 803
}
}
首先,我得到的问题是:
https://graph.facebook.com/v2.1/m_mid.1389103128864:ZZZZZ?access_token=XXXXX
我得到了这个回复:
...
"attachments": {
"data": [
{
"id": "8e48235f4d403ddfad3397ade73ed743",
"mime_type": "text/plain",
"name": "test.txt",
"size": 33
}
]
}
...
然后我尝试得到这样的附件:
https://graph.facebook.com/v2.1/8e48235f4d403ddfad3397ade73ed743?access_token=XXXXX
导致上面显示的错误响应。
如何获取邮件附件(使用Graph API,而不是FQL)?