Hi,
I'm trying to fetch genres. I can get json data when I browse the url. But when I call the API from code, data returns nil.
This is the problematic code: (allGenres returns nil)
NSURL *genreUrl = [[NSURL alloc]initWithString:@"http://api.themoviedb.org/3/genre/list?api_key=XXX"];
NSData *allGenres = [[NSData alloc] initWithContentsOfURL:genreUrl];
I would appreciate if you help me.
Thanks
Ecem
Film of tv-serie niet gevonden? Meld je aan om deze toe te voegen.
Want to rate or add this item to a list?
Not a member?
Reactie van Travis Bell
op 26 november 2013 om 5:58 PM
Hi Ecem,
I'm not sure, to be honest. I don't have much experience in objective C.
Have you taken a look at the 2 iOS libraries we have available? Perhaps they will give you some insight?
https://www.themoviedb.org/documentation/api/wrappers-libraries
Reactie van ecemd
op 29 november 2013 om 4:52 PM
Hi Travis,
Thanks for the quick reply. I'm gonna check out libraries now. Hope it helps to fix the problem.