The one and only youtube scrapper that scraps literally everything of the youtube , just using php no API key needed :) . Just Include the yt.php class and Enjoy!!.
include_once("./yt.php");
$youtube = new YT();
// get Download Urls just like this
// pass the video id
echo json_encode($youtube->getDownloadURL('1WEAJ-DFkHE'));
- Authentication
- HomePage Videos
- Video Details
- Video Related Recomended Videos
- Video Playable/Download links
- Search Videos + load more videos
- Channel Meta Info
- Channel Featured
- Channel Videos + Load more videos
- Channel Shorts
- Channel Playlist
- Channel Community Post
- Channel Live
- Channel About
- Video Comments
- Comment Replys
- Like Video
- DisLike Video
- Notifications
just download the yt.php , include it and enjoy! for examples checkout the example folder index.php or example2.php. Sample Code
include_once("./yt.php");
$youtube = new YT();
echo json_encode($youtube->search("WordPress+Tutorail")); // search query with '+' sign no space
echo json_encode($youtube->HomePageVideos()); // get youtube home page Array
echo json_encode($youtube->getRelatedVideo('GlLRYml8mCY')); // pass videoId get an array of videos
// pass videoId get a video object and related videos Array
echo json_encode($youtube->getVideo('GlLRYml8mCY'));
// pass channelId , channelId can be obtained from getVideo function in video object
echo json_encode($youtube->getChannelFeatured('UC8aFE06Cti9OnQcKpl6rDvQ'));
echo json_encode($youtube->getChannelVideos('UC8aFE06Cti9OnQcKpl6rDvQ'));
echo json_encode($youtube->getChannelShorts('UC8aFE06Cti9OnQcKpl6rDvQ'));
echo json_encode($youtube->getChannelPlayList('UC8aFE06Cti9OnQcKpl6rDvQ'));
echo json_encode($youtube->getChannelMetaDetails('UC8aFE06Cti9OnQcKpl6rDvQ'));
// commentToken is Obtained from getVideo function
echo json_encode($youtube->getComments(Comment_token_here));
echo json_encode($youtube->getReplyComments(Reply_Comment_Token_Here));
To get videos related to your Youtube account you need to be logged in, So now in order to that we need a Acccount Authorization key and users cookie so here are the steps.
-
Step1
Open youtube.com with inspector open
-
Step2
Go to Networks Tab Search for a Request called browser?key=xxxxwhatEverkeyherexxxx click it when find it if you cant find just the reload page.
-
Step3
In Headers Tab Scroll Down and find authorization and cookie value , then copy it to your .env file; paste in as Variable you like AUTHORIZATION and COOKIE
OR
just pass them directly
AUTHORIZATION="SAPISIDHASH xxxxxx......xxxx....xxx"
COOKIE="VISITOR_INFO1_LIVE=fesy_ELdl0I; wide=0; YSCxxxx......"
/**
* -----------------------------------
* AUTHORIZATION
* -----------------------------------
*/
include_once("./yt.php");
$youtube = new YT();
$env = parse_ini_file('.env');
$youtube->setAuthorization($env['AUTHORIZATION']);
$youtube->setCookie($env['COOKIE']);
// ------------------------------------
echo json_encode($youtube->HomePageVideosWithAuth());
- load more videos [for methods like relatedvideos , channel Shorts , community posts etc]
- Now You Will Get Yt Shorts from HomePage as Well as the chips (21-Aug-2023)
- Now we Can Get LoggedIn User Profile Picture (21-Aug-2023)
- Added Channel Community Post and Channel Live Videos, About [fixed Some Bugs] (27-Aug-2023)
- Video Download Speed Fixed , New Download Method Provide Fast Video URLS [Refractoring] (02-Sep-2023)
- Now you can load more Videos of Channel (14-Oct-2023)
- a few minor php errors fixed (03-Feb-2024)
- fixed homepage video loading (04-Feb-2024)