创建新的 Place Facebook SDK C#

发布于 2024-12-04 15:06:20 字数 536 浏览 2 评论 0原文

我已经为 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

深巷少女 2024-12-11 15:06:20
        Dictionary<string, object> position = new System.Collections.Generic.Dictionary<string, object>();
        position.Add("latitude", 25.04098367f);
        position.Add("longitude", 121.54597771f);

        Dictionary<string, object> parameters = new System.Collections.Generic.Dictionary<string, object>();
        parameters.Add("access_token", _accessToken);
        parameters.Add("message", "自行開發應用程式打卡");
        parameters.Add("place", "236679649740148");
        parameters.Add("coordinates", position);
        Dictionary<string, object> position = new System.Collections.Generic.Dictionary<string, object>();
        position.Add("latitude", 25.04098367f);
        position.Add("longitude", 121.54597771f);

        Dictionary<string, object> parameters = new System.Collections.Generic.Dictionary<string, object>();
        parameters.Add("access_token", _accessToken);
        parameters.Add("message", "自行開發應用程式打卡");
        parameters.Add("place", "236679649740148");
        parameters.Add("coordinates", position);
反目相谮 2024-12-11 15:06:20

parameters.Add("地点", "236679649740148"); ->这个数字是什么? 236679649740148

这个数字应该是您的应用 ID

parameters.Add("place", "236679649740148"); -> what is this number? 236679649740148

this number should be your app ID

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文