I have a graph api call from my ios application. It looks something like this:
[[appDelegate facebook] requestWithGraphPath:[NSString stringWithFormat:@"%i/picture", [[userData objectForKey:@"id"] intValue] andDelegate:self];
(might be some typos)
But in the request did load when i nslog the result, it is (null)
. Graph API says that you need to use fields=picture or something to get the url. How would I do this? If it is possible could somebody show me some example code?