Sprijin Bază de date filme (The Movie Database)

My code to create a list for a user is not working. To confirm my understanding of the code, I tried sending the request using curl and am getting the same response as my code: 500 Internal Server Error. Here's my curl command:

curl -i -X POST 'https://api.themoviedb.org/3/list?api_key=my_api_key&session_id=my_session_id -d 'name=fred&description=flintstone'

Perhaps you can tell me why this command doesn't work. BTW, if I use a bad my_api_key, it gives me an Invalid API key error. If I use a bad my_session_id, it gives me an Authentication failed error. If I omit one or both of the name or description parameters, it gives me an Invalid parameters error. Only if I include all the correct parameters and the name and description payload body does it give me the 500 Internal Server Error.

10 răspunsuri (pe pagină 1 din 1)

Jump to last post

Hi celiao,

You need to pass the name and description in as valid JSON. There's a cURL example in the docs:

curl --include \
     --request POST \
     --header "Content-Type: application/json" \
     --header "Accept: application/json" \
     --data-binary '{
    "name": "My Totally Awesome List",
    "description": "This list was created to share all of the totally awesome movies I\'ve seen."
}' \
     http://api.themoviedb.org/3/list

Cheers.

Previously, I also tried passing the name and description as JSON and received a 500 Internal Server Error:

curl -i -X POST 'https://api.themoviedb.org/3/list?api_key=my_api_key&session_id=my_session_id' \
     -d '{"name": "fred", "description": "flintstone"}' \
     -H 'Content-Type: application/json' -H 'Accept: application/json'

So, I tried using the format in the cURL example:

curl --include --request POST \
     --header "Content-Type: application/json" --header "Accept: application/json" \
     --data-binary '{"name": "fred", "description": "flintstone"}' \
     'https://api.themoviedb.org/3/list?api_key=my_api_key&session_id=my_session_id'

This also produces a 500 Internal Server Error.

I am able to make other POST request calls, with parameters and payloads, with my code and with cURL, without errors. Only this list creation method is giving me trouble. Any more clues? Thanks.

Would you mind looking at this issue again? Please take a look at my curl command and see if you can figure out what I'm doing incorrectly. Thanks!

Now, for some reason, I'm getting an HTTP 404 Not Found error and status code of 34, which is not on the list of status codes: https://www.themoviedb.org/documentation/api/status-codes.

curl -i -X POST -H "Content-Type: application/json" -H "Accept: application/json" \
        -d '{"name": "My totally awesome list", "description": "this would be awesome if it worked"}' \
        'http://api.themoviedb.org/3/list/?api_key=MY_API_KEY&session_id=MY_SESSION_ID'

HTTP/1.1 404 Not Found
Access-Control-Allow-Origin: *
Cache-Control: public, max-age=36000
Content-Type: application/json;charset=utf-8
Date: Sat, 12 Jul 2014 01:20:30 GMT
Server: nginx
Status: 404 Not Found
X-Cascade: pass
Content-Length: 80
Connection: keep-alive

{"status_code":34,"status_message":"The resource you requested could be found."}

Any clues that help me get this working would be appreciated.

Hi celiao,

34 was recently added, it’s just the status code for a 404 when the controller action doesn’t exist (I’ll have to update the website docs).

This particular issue is the trailing / you have at the of your URL.

curl -i -X POST -H "Content-Type: application/json" -H "Accept: application/json" \
        -d '{"name": "My totally awesome list", "description": "this would be awesome if it worked"}' \
        'http://api.themoviedb.org/3/list?api_key=MY_API_KEY&session_id=MY_SESSION_ID'

Fixes that.

I am seeing a 500 error though, and will take a look at this when I get back into the office on Monday. I’ve created a ticket for this issue here.

Makes sense. I was receiving a 500 error with my Python code too, so it would be great to get this resolved.

In addition, you might want to add not to the error message:

{"status_code": 34, "status_message": "The resource you requested could not be found."}

Just wanted to chime in and report that this still seems to be an issue.

We're issuing a:

http://api.themoviedb.org/3/list?session_id={session}&api_key={key}
{"name":"test","description":"test"}

And get back:

HTTP 500
{"status_code":11,"status_message":"Internal error: Something went wrong, contact TMDb."}

Hey Mike,

Yup, ticket for this is here: http://tmdb.lighthouseapp.com/projects/83077/tickets/405-creating-new-lists-seems-to-fail-when-it-should-work

It's close to (finally) being the next thing I look at.

Hey guys,

Lists should be create able again. Can you let me know how you make out?

Fantastic, Travis!

tmdbsimple now passes all it's tests under Python 2.7.6, 3.3.5, and 3.4.0.

Nu găsiți un film sau un serial? Autentificați-vă pentru a-l crea.

Global

s focalizați bara de căutare
p deschideți meniul profilului
esc închide o fereastră deschisă
? deschideți fereastra de scurtături de la tastatură

Pe paginile media

b înapoi (sau la pornire atunci când este cazul)
e accesați pagina de editare

Pe paginile sezonului TV

(săgeată dreapta) mergeți la sezonul următor
(săgeată stânga) mergeți la sezonul precedent

Pe paginile episoadelor TV

(săgeată dreapta) mergeți la următorul episod
(săgeată stânga) mergeți la episodul anterior

Pe toate paginile de imagini

a deschideți fereastra pentru adăugarea imaginii

Pe toate paginile de editare

t deschide selectorul de traduceri
ctrl+ s trimiteți formularul

Pe paginile de discuții

n creați o nouă discuție
w comutați stare de vizionare
p comutați public/privat
c comutați închidere/deschidere
a deschide activitatea
r răspuns la discuție
l mergeți la ultimul răspuns
ctrl+ enter trimiteți mesajul
(săgeată dreapta) pagina următoare
(săgeată stânga) pagina anterioară

Setări

Doriți să evaluați sau să adăugați acest element într-o listă?

Autentificare