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
Can't find a movie or TV show? Login to create it.
ต้องการให้คะแนนหรือเพิ่มรายการนี้ไปยังรายการหรือไม่
ไม่ใช่สมาชิกเหรอ
Reply by Travis Bell
on November 26, 2013 at 5:58 หลังเที่ยง
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
Reply by ecemd
on November 29, 2013 at 4:52 หลังเที่ยง
Hi Travis,
Thanks for the quick reply. I'm gonna check out libraries now. Hope it helps to fix the problem.