我尝试从两个用户之间发送的消息中获取共享对象。
根据 Facebook 文档,我应该使用方法 /{message-id}/shares https://developers.facebook.com/docs/graph-api/reference/v2.2/message/shares
但是,当我使用具有read_mailbox权限的用户尝试此操作时,我收到以下错误:
{
"error": {
"message": "Unsupported get request. Please read the Graph API documentation at https://developers.facebook.com/docs/graph-api",
"type": "GraphMethodException",
"code": 100
}
}
我使用通过请求/me/inbox检索到的消息 ID
我错过了什么?