Facebook SDK Multi-friend-selector

Hi,

I have imeplemented the Facebook SDK into Unity, and I can login. I am trying to get a list of invitable_friens through the FB.API call, and then I return to a callback function, however I don’t know how to handle the data that is returned.

void GetFriendList()
	{
		FB.API( "/me/invitable_friends",  Facebook.HttpMethod.GET, FriendCallback );
	}
	
	void FriendCallback( FBResult result )
	{
// Not sure how to handle the result returned.
	}

Any advice would be great!

Maybe watch this tutorial it explains how to parse the results: