I am working with facebook apis
I am trying to fetch attributes of an image with id '105502842870274' for this I tried to create a url like this
NSString *firstComponent=@"https://graph.facebook.com/105502842870274?access_token=";
firstComponent=[firstComponent stringByAppendingFormat:[NSString stringWithFormat:@"%@",_accessToken]];
NSURL *url = [NSURL URLWithString:firstComponent];
but every time url is passes as nil.
Please let me know if I am doing something wrong or suggest someother way to fetch attributes of an image.
Thanx in advance