我正在尝试从 WindowsPhone 应用程序更新 Facebook 帖子。我没有在文档中找到任何提及: https ://developers.facebook.com/docs/reference/api/post/
创建/删除工作得很好,但在我的情况下,我需要更新以前发布的帖子。
我试图发布到 /post_id 路径
var fb = new FacebookClient(_token);
dynamic result = await fb.PostTaskAsync(
"/" + _postId,
new { message = "test update!" });
但出现以下错误:
Facebook.FacebookOAuthException: (OAuthException - #100) (#100) 需要以下参数之一:
is_hidden,is_published,scheduled_publish_time,is_pinned,timeline_visibility,backdated_time
如果我添加 is_published 标志:
var fb = new FacebookClient(_token);
dynamic result = await fb.PostTaskAsync(
"/" + _lastPostId,
new {
message = "test update!",
is_published = true
});
我得到另一个错误:
(OAuthException - #100) (#100) 不支持的发布请求
感谢您的任何建议!