api.consumet.org icon indicating copy to clipboard operation
api.consumet.org copied to clipboard

TMDB status code 500

Open haashem33 opened this issue 2 years ago • 1 comments

Describe the bug

tmdb search returns 500

Steps to reproduce

import axios from "axios";

// Using the example id of "60735" and the query of "tv" const url = "https://api.consumet.org/meta/tmdb/info/60735"; const data = async () => { try { const { data } = await axios.get(url, { params: { type: "tv" } }); return data; } catch (err) { throw new Error(err.message); } };

console.log(data);

Expected behavior

it should return the movie details

Actual behavior

{"statusCode":500,"error":"Internal Server Error","message":"Request failed with status code 401"}

Additional context

No response

haashem33 avatar Oct 16 '23 03:10 haashem33

This API endpoint was working fine recently, but now it's throwing a 500 error again. The same issue is happening with the 'tmdb/watch/' endpoint.

taherdodia03 avatar Oct 02 '24 05:10 taherdodia03