Facebook SDK C#

发布于 2024-12-02 08:37:48 字数 353 浏览 1 评论 0原文

我正在尝试使用 Facebook SDK C# 通过 someid/feed api 解析 facebook api。但我无法正确解析这些键。有人有一个例子说明这应该如何工作吗?

dynamic fb = new FaceBookClient(token);
dynamic feed = fb.Get("123456/feed");
var msg = feed.message; // (do not get intellisense)

或者

var msg = feed["message]; //(returns No data key found error.)

I am trying to parse the facebook api via someid/feed api using Facebook SDK C#. But I cannot parse the keys quite right. Does anyone have an example of how this should work?

dynamic fb = new FaceBookClient(token);
dynamic feed = fb.Get("123456/feed");
var msg = feed.message; // (do not get intellisense)

or

var msg = feed["message]; //(returns No data key found error.)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

剧终人散尽 2024-12-09 08:37:48

您还需要将 appId 和 appSecret 传递给 FaceBookClient。
因此,不要选择构造函数,而是在 Web.Config 中进行设置:

<facebookSettings appId="123" appSecret="abc" siteUrl="..." canvasPage="..." canvasUrl=".." cancelUrlPath="..." />

然后尝试:

FacebookWebClient fbWebClient = new FacebookWebClient();                    
dynamic result = fbWebClient.Get("123456/feed");

You need to pass also appId and appSecret to FaceBookClient.
So instead of picking up a constructor, do the settings in Web.Config:

<facebookSettings appId="123" appSecret="abc" siteUrl="..." canvasPage="..." canvasUrl=".." cancelUrlPath="..." />

then try:

FacebookWebClient fbWebClient = new FacebookWebClient();                    
dynamic result = fbWebClient.Get("123456/feed");
森末i 2024-12-09 08:37:48

Feed 返回一个封装在结果对象中的 JSON 数组。通过调用 feed.First() 获取结果对象,然后循环遍历 JsonArray 以获取各个帖子。

const string url = "/me/feed";
IDictionary<string, object> feed = FacebookClient.Get(url, parameters);
JsonArray posts = feed.First().Value as dynamic;
return posts;

Feed returns a JSON Array wrapped in a result object. Get the result object by calling feed.First(), then loop through the JsonArray to get the individual posts.

const string url = "/me/feed";
IDictionary<string, object> feed = FacebookClient.Get(url, parameters);
JsonArray posts = feed.First().Value as dynamic;
return posts;
提赋 2024-12-09 08:37:48

正如我所见,这很简单。

public dynamic GetFeeds()
{
   dynamic feeds = facebookClientProvider.CreateOne().Get("/me/feed");
   //feeds.data
   //feeds.paging

   return feeds;
}

feeds.data 将包含提要,而 data.paging 将包含一个 url,您可以在其中下载以下提要。

我正在使用 Facebook C#SDK 运行时版本:v4.0.30319 和版本:6.0.10.0

It is so simple as I see.

public dynamic GetFeeds()
{
   dynamic feeds = facebookClientProvider.CreateOne().Get("/me/feed");
   //feeds.data
   //feeds.paging

   return feeds;
}

The feeds.data will contain the feeds and the data.paging will contain a url where you can download the following feeds.

I'm using Facebook C#SDK Runtime version:v4.0.30319 and Version:6.0.10.0

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