Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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!

share|improve this question

1 Answer

up vote 1 down vote accepted

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

share|improve this answer
Yes, but that its not the way I want to get the info. I want to get it in the same way that is in this getting started sample facebooksdk.codeplex.com/… Which is using the dynamic object.property_name – byte_slave Jan 7 '11 at 12:07
Well, you're right! I tried and worked. I just don't remember to see this ever in any example. Thanks a lot Iraklis! – byte_slave Jan 7 '11 at 12:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.