我尝试使用我创建的桌面应用程序在我的Facebook群组上发布正常帖子,并且成功我可以发布正常帖子或帖子,其中有链接可以正常显示其预览但是当共享某个页面的帖子时显示预览发生一些错误,帖子没有发布我不知道为什么这样做,所以我想我可以在这里使用一些提示,,,这是我的C#代码
var postArgs = new Dictionary<string, object>(); postArgs["message"] = "some status update here"; postArgs["link"] = "the desired link; var fb = new FacebookClient(Settings.Default.AccessToken) { AppId = CurrentValues.appId, AppSecret = CurrentValues.appSecret }; await fb.PostTaskAsync( string.IsNullOrEmpty(destination) ? "/me/feed" : string.Format("/{0}/feed", destination), postArgs);
其中包含此代码的方法标记为异步方法,“destination”是包含groupId的方法参数。