如何删除消息
我尝试从收件箱中删除一条消息。 但我得到 100 无效参数异常 我使用csharp sdk
FacebookWebClient fbw = new FacebookWebClient(accesstoken);
fbw.Delete("/userid_messageid");
I try to delete a message from my inbox.
But i get 100 invailid parameter exception
I use csharp sdk
FacebookWebClient fbw = new FacebookWebClient(accesstoken);
fbw.Delete("/userid_messageid");
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用当前 API 无法删除收件箱消息。收件箱的权限是只读的。
There's no way to delete inbox messages with current API's. Permission about inbox is read-only.
您的应用程序首先创建了该消息吗?如果没有,则无法删除它。
Did your app create that message in the first place? If not, then you cannot delete it.