Hi , I am using Tmdb in my app . First 2 days it worked fine . now it's giving a error massage given below. Help me.
{"status_message":"Internal error: Something went wrong, contact TMDb.","success":false,"status_code":11}
.לא מצאת סרט או סדרה? היכנס כדי ליצור אותם
?רוצה לדרג או להוסיף פריט אל רשימה
?לא חבר אתר
תגובה מאת Travis Bell
ב-ספטמבר 1, 2016 ב-12:07אחרי חצות יום
Hi there,
What's the request you are making?
תגובה מאת Md Tanvir Alam
ב-ספטמבר 1, 2016 ב-5:54אחרי חצות יום
Hi Travis, I am using discover api get call and sory by popularity. from yesterday it is giving error.. Please check the discover get api . I just checked now . It's not fixed yet.
http://discover/movie?primary_release_date.gte=2014-09-15&primary_release_date.lte=2014-10-22
תגובה מאת Travis Bell
ב-ספטמבר 1, 2016 ב-6:02אחרי חצות יום
Hi,
This query is working ok for me:
Are you passing any extra params?
תגובה מאת Md Tanvir Alam
ב-ספטמבר 1, 2016 ב-6:07אחרי חצות יום
Hi Travis,
year,month,currentday,beforeday are stored in variable...I don't know why it worked first now it's not working..doesn't make any sense.
תגובה מאת Travis Bell
ב-ספטמבר 1, 2016 ב-6:18אחרי חצות יום
Without seeing the fully constructed URL that is error'ing I won't be able to help out much more. If you can get a hold of that I can investigate this further for you.
תגובה מאת Md Tanvir Alam
ב-ספטמבר 1, 2016 ב-6:20אחרי חצות יום
http://api.themoviedb.org/3/discover/movie?primary_release_date.gte=2016-9--5&primary_release_date.lte=2016-9-2&api_key=###&sort_by=popularity.desc
Failed to load resource: the server responded with a status of 500 (Internal Server Error)
תגובה מאת Travis Bell
ב-ספטמבר 1, 2016 ב-6:29אחרי חצות יום
You actually have three problems here.
First, you have 2 dashes in your
primary_release_date.gte
param:2016-9--5
and second,2016-9-5
isn't a valid date object. As per the documentation, you need to specify your dates inYYY-MM-DD
, i.e.2016-09-05
. And third, you're specifying agte
that is later than yourlte
which won't yield any results. Here's a working query:תגובה מאת Md Tanvir Alam
ב-ספטמבר 1, 2016 ב-6:30אחרי חצות יום
Sorry Travis I have found the problem..it is the auto date generator giving me a negative day .. which is ,of course, not available.. That's why it was showing internal error.
Thanks for your support Travis. Great Movie Api.
תגובה מאת Travis Bell
ב-ספטמבר 1, 2016 ב-6:31אחרי חצות יום
No problem! Happy you found the issue.