访问 facebook sdk api 返回的动态对象的属性

发布于 2024-10-10 19:32:11 字数 858 浏览 3 评论 0原文

我使用以下代码从 FB 获取一些数据:

    dynamic parameters = new ExpandoObject();
    parameters.ids = "me";
    parameters.fields = "friends";
    dynamic result = fbApp.Api(parameters);

    foreach (dynamic item in result)
    {
        Response.Write("<h1>" + item.name + "</h1>");
    }

此代码失败,显然无法访问属性名称,这是错误:

'System.Collections.Generic.KeyValuePair<string,object>' does not contain a definition for 'name'

访问属性时我做错了什么?这不是正确的做法吗?

查询返回我想要的信息,只是无法访问它。浏览器中的查询正在返回:

{
   "data": [
      {
         "name": "John Doe 1 ",
         "id": "123456789"
      },
      {
         "name": "John Doe 1 ",
         "id": "123456789"
      },
      {
         "name": "John Doe 1 ",
         "id": "123456789"
      }
   ]
}

任何帮助将不胜感激!

蒂亚!

I'm fetching some data from FB using the following code:

    dynamic parameters = new ExpandoObject();
    parameters.ids = "me";
    parameters.fields = "friends";
    dynamic result = fbApp.Api(parameters);

    foreach (dynamic item in result)
    {
        Response.Write("<h1>" + item.name + "</h1>");
    }

This code fails, apparently the property name cannot be accessed, here's the error:

'System.Collections.Generic.KeyValuePair<string,object>' does not contain a definition for 'name'

What i'm doing wrong when accessing the properties? Isn't this the correct way to do so?

The query returns the info i want, just can't access it. Query in the browser is returning:

{
   "data": [
      {
         "name": "John Doe 1 ",
         "id": "123456789"
      },
      {
         "name": "John Doe 1 ",
         "id": "123456789"
      },
      {
         "name": "John Doe 1 ",
         "id": "123456789"
      }
   ]
}

Any help will be appreciated!

TIA!

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

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

发布评论

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

评论(1

随波逐流 2024-10-17 19:32:11

这是一个键值对,可以尝试 item.Value!

It's a key value pair sto try item.Value!

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