本文介绍了Facebook签到C#的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
大家好,
我在使用C#为我的应用程序提供坐标时遇到问题。
Hi guys,
I am having a problem with providing coordinates to my app in C#.
string access_token = tokens["access_token"];
var client = new FacebookClient(access_token);
client.Post
("/me/checkins", new {coordinates=("latitude='51.47', longitude='-3.09'"), place="test", message = "message!"});
当我运行应用程序时,我得到此错误:
(OAuthException - #160)(#160)坐标无效。坐标必须至少包含纬度和经度。
您能帮忙吗?
谢谢
when I run the application, I get this error:
(OAuthException - #160) (#160) Invalid coordinates. Coordinates must contain at least latitude, and longitude.
Would you kindly help?
Thanks
推荐答案
这篇关于Facebook签到C#的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!