With the request below I delete the tv show from watchlist but when I get the watchlist again I receive a watchlist with this item in it. Adding is working just fine instead of false I send True. I saw that you don't have delete from watchlist also on your site. What should I do ?
REQUEST:
POST http://api.themoviedb.org/3/account/1396/watchlist?api_key=MYAPIKEY&session_id=MYSESSIONID HTTP/1.1 Accept-Encoding: gzip Accept: application/json Content-Length: 57 Content-Type: application/json; charset=utf-8 Host: api.themoviedb.org Connection: Keep-Alive Pragma: no-cache Cookie: _ga=GA1.2.226218752.1443841333
{"media_type":"tv","media_id":"1396","watchlist":"False"}
RESPONSE:
HTTP/1.1 201 Created Access-Control-Allow-Origin: * Cache-Control: public, max-age=0 Content-Type: application/json;charset=utf-8 Date: Wed, 07 Oct 2015 01:50:39 GMT Server: openresty Status: 201 Created X-RateLimit-Limit: 40 X-RateLimit-Remaining: 39 X-RateLimit-Reset: 1444182649 Content-Length: 79 Connection: keep-alive
{"status_code":12,"status_message":"The item/record was updated successfully."}
Un film, une émission télévisée ou un artiste est introuvable ? Connectez-vous afin de créer une nouvelle fiche.
Vous souhaitez évaluer ou ajouter cet élément à une liste ?
Pas encore membre ?
Réponse de Travis Bell
le 7 octobre 2015 à 12h09
Hi Dzivo,
Make sure you're sending a boolean and not a string (might as well send an integer for the id while you're at it):
Cheers.
Réponse de Dzivo
le 7 octobre 2015 à 14h12
Thx that did the trick