Want to put doodstream API on streaming websites

Lolipop77

Newbie
Joined
Jan 28, 2022
Messages
14
Reaction score
3
Hey guys did anyone put API of doodstream that replace automatically deleted videos on streaming websites ?

Thanks for helping
 
I did.
The only part that is not automated is to click on "Regenerate link" on the DMCA page, that you have to do regularly (each time you have a burned link).

You have to code some PHP files that:
1) Fetch the video file code from doodstream, then bind it with the dood short link (in order to create a full link), and stores that link in a JSON file (one for each movie)
2) Update your database using the relevant JSON file and the ID of the movie in your database.

You can use CRON tasks on your server to automate the process 24/7, but not more often than once per hour.
Also, make sure that these PHP files are not publicly accessible, if not there will be constant calls to Dood API, and Cloudflare will flag your server/IP.
 
I did.
The only part that is not automated is to click on "Regenerate link" on the DMCA page, that you have to do regularly (each time you have a burned link).

You have to code some PHP files that:
1) Fetch the video file code from doodstream, then bind it with the dood short link (in order to create a full link), and stores that link in a JSON file (one for each movie)
2) Update your database using the relevant JSON file and the ID of the movie in your database.

You can use CRON tasks on your server to automate the process 24/7, but not more often than once per hour.
Also, make sure that these PHP files are not publicly accessible, if not there will be constant calls to Dood API, and Cloudflare will flag your server/IP.
Thank you bro
 
Back
Top