Συντομεύσεις πληκτρολογίου
Προχωρημένη αναζήτηση
Hi,How to get latest movie list.Please help me.
Hi sailendra.v,
Are you trying to get the latest movies via the API? What specific list are you looking for?
Hi,
I am looking for all kinds of recently released movies list like Hollywood, Bollywood(Hindi) and Tollywood(Telugu) and also featured release movies.
You can build your own discover query to filter release dates however you please. That will be the easiest way to get a lit of movies that you're looking for.
Hi Travis Bell, i am running this code <?php $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, "http://themoviedb.apiary.io/3/discover/movie"); curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE); curl_setopt($ch, CURLOPT_HEADER, FALSE); curl_setopt($ch, CURLOPT_HTTPHEADER, array("Accept: application/json")); $response = curl_exec($ch); curl_close($ch);
var_dump($response); ?> It is showing string(40) "Private API, please provide private hash"
what is private api ...I got only one api key from you.....please help me to run this code....
You're not using the production API, that's just Apiary, a tool you can use to help troubleshoot requests.
Change your request to use api.themoviedb.org and you will see it work.
api.themoviedb.org
Cheers.
Δεν μπορείτε να βρείτε κάποια ταινία ή σειρά; Συνδεθείτε για να τη δημιουργήσετε.
Σύνδεση
Εγγραφή
Θέλετε να αξιολογήσετε ή να προσθέσετε αυτό το στοιχείο σε μια λίστα;
Δεν είσαι μέλος;
Εγγραφείτε και γίνετε μέλος της κοινότητας
Απάντηση από τον/την Travis Bell
στις 13 Φεβρουάριος 2014 στις 10:45 ΕΊΜΑΙ
Hi sailendra.v,
Are you trying to get the latest movies via the API? What specific list are you looking for?
Απάντηση από τον/την sailendra.v
στις 13 Φεβρουάριος 2014 στις 11:53 ΜΜ
Hi,
I am looking for all kinds of recently released movies list like Hollywood, Bollywood(Hindi) and Tollywood(Telugu) and also featured release movies.
Απάντηση από τον/την Travis Bell
στις 17 Φεβρουάριος 2014 στις 10:30 ΕΊΜΑΙ
You can build your own discover query to filter release dates however you please. That will be the easiest way to get a lit of movies that you're looking for.
Απάντηση από τον/την sailendra.v
στις 17 Φεβρουάριος 2014 στις 11:39 ΜΜ
Hi Travis Bell, i am running this code <?php $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, "http://themoviedb.apiary.io/3/discover/movie"); curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE); curl_setopt($ch, CURLOPT_HEADER, FALSE); curl_setopt($ch, CURLOPT_HTTPHEADER, array("Accept: application/json")); $response = curl_exec($ch); curl_close($ch);
var_dump($response); ?> It is showing string(40) "Private API, please provide private hash"
what is private api ...I got only one api key from you.....please help me to run this code....
Απάντηση από τον/την Travis Bell
στις 18 Φεβρουάριος 2014 στις 09:13 ΕΊΜΑΙ
Hi sailendra.v,
You're not using the production API, that's just Apiary, a tool you can use to help troubleshoot requests.
Change your request to use
api.themoviedb.org
and you will see it work.Cheers.