Facebook SDK C#
我正在尝试使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您还需要将 appId 和 appSecret 传递给 FaceBookClient。
因此,不要选择构造函数,而是在 Web.Config 中进行设置:
然后尝试:
You need to pass also appId and appSecret to FaceBookClient.
So instead of picking up a constructor, do the settings in Web.Config:
then try:
Feed 返回一个封装在结果对象中的 JSON 数组。通过调用 feed.First() 获取结果对象,然后循环遍历 JsonArray 以获取各个帖子。
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.
正如我所见,这很简单。
feeds.data 将包含提要,而 data.paging 将包含一个 url,您可以在其中下载以下提要。
我正在使用 Facebook C#SDK 运行时版本:v4.0.30319 和版本:6.0.10.0
It is so simple as I see.
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