Closed pitsi closed 2 years ago
@pitsi fixed 👍. they changed the key size from 16 to 32 chars, so I just had to use a different regex.
Thank you very very much! :)
@riimuru This issue seems to have popped up again.
I tried the process done above and it seems to be replicating the same response as before.
The output of both of the following commands
curl -s "https://api.consumet.org/movies/flixhq/watch?episodeId=19694&mediaId=movie/watch-deadpool-19694&server=vidcloud"
curl -s "https://api.consumet.org/movies/flixhq/watch?episodeId=19694&mediaId=movie/watch-deadpool-19694&server=upcloud"
Produce the same output of
{"message":"Media Not found."}
It's almost 7am here and I have just woken up, but I had to check it.
So, on my first try with just curl, the api returned stream links and I was about to say that it was working ok and I would commend later on, with some grep etc to keep the important parts. Then I tried my script, but it did not work, so I tried curl again. And this time curl returned the "media nor found" message. I will investigate it more later on, just in case the api has some downtime.
I also noticed that it no longer returns the same urls for vidcloud and upcloud, like it did 2 days ago.
---edit 2 hours have passed since then and I checked it again just now. It does return results like it used to and the script is also working...
Describe the bug
The api does not return streams for vidcloud and upcloud. It does return streams for mixcloud though.
Steps to reproduce
mediaId
as the api names it. E.g. for deadpoolepisodeId
as the api names it.$ curl -s "https://api.consumet.org/movies/flixhq/watch?episodeId=19694&mediaId=movie/watch-deadpool-19694&server=upcloud" | jq .
$ curl -s "https://api.consumet.org/movies/flixhq/watch?episodeId=19694&mediaId=movie/watch-deadpool-19694&server=mixdrop" | jq . { "url": "https://s-delivery25.mxdcontent.net/v/0d097bb93c197127f37e24d151e5ff26.mp4?s=2aWSU0kHPEWTnEV_wNqLOQ&e=1665692979&_t=1665677379", }
$ curl -s "https://api.consumet.org/movies/flixhq/watch?episodeId=19694&mediaId=movie/watch-deadpool-19694&server=vidcloud" | jq . { "message": "Media Not found." }
$ curl -s "https://api.consumet.org/movies/flixhq/watch?episodeId=19694&mediaId=movie/watch-deadpool-19694&server=upcloud" | jq . { "message": "Media Not found." }