为什么我得到了OAuthException(错误代码803)当我将用户位置详细信息发布到Facebook墙上时?

时间:2015-10-21 11:32:33

标签: c# facebook facebook-graph-api

我正在使用C#和XAML开发通用Windows应用程序。

当我将用户当前位置详细信息发布到Facebook墙上时,那时我得到了如下图所示的OAuthException异常。 enter image description here

关于上面的例外,我在下面写了一些行代码....

PropertySet parameters = new PropertySet();
parameters.Add("message", "Need Help, Am In Emergency. "+" " + "This is my current location " + geocoordinate.Point.Position.Latitude.ToString("0.00") + "," + geocoordinate.Point.Position.Longitude.ToString("0.00"));
parameters.Add("link", "http://maps.google.com/?q=" + App.pos.Coordinate.Point.Position.Latitude.ToString("0.00") + "," + App.pos.Coordinate.Point.Position.Longitude.ToString("0.00"));


// Set Graph api path

string path = "/" +App.sess.User.Name + "/feed";
FBSingleValue sval = new FBSingleValue(path, parameters, new FBJsonClassFactory(FBReturnObject.FromJson));

FBResult fbresult = await sval.PostAsync();

如何解决上述问题?

0 个答案:

没有答案