<?php |
echo'<html><head><title>Mega downloader</title></head><body><h2>Enter Url</h2><form action='mega.php' method='POST'> <br> URL: <input type='text' name='URL'> <br><input type='submit' value='Submit'></form>'; |
if ($_POST) { |
error_reporting(0); |
$url = $_POST['URL']; |
preg_match('/!(.+?)!/', $url, $output_array); |
$fileID = $output_array[1]; |
$domain = 'meganz'; |
$lang = 'en'; |
$apiURL = 'https://eu.api.mega.co.nz/cs?domain=$domain&lang=$lang'; |
$value = array( |
array( |
'a' => 'g', |
'g' => 1, |
'ssl' => 0, //0, 1, 2 (default is 2) |
'p' => $fileID) // File id here |
); |
$rawPOST = json_encode($value); |
$ch = curl_init(); |
curl_setopt($ch, CURLOPT_URL, $apiURL ); |
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); |
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true ); |
curl_setopt($ch, CURLOPT_POST, true ); |
curl_setopt($ch, CURLOPT_POSTFIELDS, $rawPOST ); |
curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.93 Safari/537.36'); |
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: text/plain;charset=UTF-8')); |
$result=curl_exec($ch); |
$jsonResult = json_decode($result); |
$directLink = $jsonResult[0]->g; |
$fileSize = $jsonResult[0]->s; |
echo'URL: $directLink'; |
echo'<br>'; |
echo'File Size: $fileSize bytes'; |
echo'<br>'; |
} |
echo'</body> |
</html>'; |
?> |
commented May 3, 2019
Direct Link Buell
commented Jan 12, 2020
Direct Link Internet
the link perfect get .... |
commented Oct 11, 2020
With Dropbox you can create a link that starts a download directly when opened in a browser. So if you receive an e-mail with a link in the body, clicking the link starts the download directly, without having to open a page which shows a download button. Is it possible to create such a link for Mega as well? Download Torrents, Magnets and Links directly to your Cloud: Dropbox, Google Drive, Amazon Cloud, OneDrive, OpenDrive or FTP server. TransferCloud.io - Direct Torrent Download to Cloud Storage Terms. Right click on the Click to download button and copy the link to get the direct download link. If you open the Options window from the main page, a box is available where you can enter an expiry date. This can be from 1 hour up to 6 months in the form of 1-24h, 1-7d, 1-4w, 1-6m.
commented Oct 14, 2020 •
It is working fine all you have to do is decrypt it.
|