创建新的 Place Facebook SDK C#
我已经为 wp7 创建了一个应用程序,您可以通过该应用程序通过签到在 facebook 上发布您的位置,我只是不知道如果新位置尚不存在,如何创建它? 我什至不知道如何在 Facebook 网站上创建它。
这就是我发帖的方式,以便您明白我在说什么:
JsonObject coordinates = new JsonObject();
coordinates.Add("latitude", _latitude);
coordinates.Add("longitude", _longitude);
var arguments = new Dictionary<string, object>();
arguments["access_token"] = _accessToken;
arguments["place"] = selected.ID;
arguments["coordinates"] = coordinates.ToString();
fb.PostAsync("me/checkins", arguments);
我希望有人能提供帮助。此致
I have created an application for wp7, from which you can post your location on facebook via checkin, I just don't know how can I create a new location if it doesn't exist yet?
I don't even know how can I creatit at the facebook site as well.
This is how I post, so that you see what I'm talking about:
JsonObject coordinates = new JsonObject();
coordinates.Add("latitude", _latitude);
coordinates.Add("longitude", _longitude);
var arguments = new Dictionary<string, object>();
arguments["access_token"] = _accessToken;
arguments["place"] = selected.ID;
arguments["coordinates"] = coordinates.ToString();
fb.PostAsync("me/checkins", arguments);
I hope someone can help. Best Regards
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这个数字应该是您的应用 ID
this number should be your app ID