Der Login wird überwunden und nur der gesuchte Ordner ausgegeben.
Aber
zeigt keine Funktion.... und zeigt dementsprechend den generierten Code nicht an.Code:&chkFolder[]=XXXX&op=stimg_png&submit=los
PHP-Code:<?php
$username = 'xxx';
$password = 'xxx';
$loginUrl = 'http://share-links.biz/login';
//$sl_unique_link = str_replace("http://share-links.biz/", "", "http://share-links.biz/_ird5u7o6soto");
$sl_search_file = "9512058699fc04289f4f84e7f";
//init curl
$ch = curl_init();
//Set the URL to work with
curl_setopt($ch, CURLOPT_URL, $loginUrl);
// ENABLE HTTP POST
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_USERAGENT, $_SERVER['HTTP_USER_AGENT']);
//Set the post parameters
curl_setopt($ch, CURLOPT_POSTFIELDS, 'remember_me=1&user='.$username.'&pass='.$password.'&submit=Login');
//Handle cookies for the login
curl_setopt($ch, CURLOPT_COOKIEJAR, 'cookie.txt');
//Setting CURLOPT_RETURNTRANSFER variable to 1 will force cURL
//not to print out the results of its query.
//Instead, it will return the results as a string return value
//from curl_exec() instead of the usual true/false.
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
//execute the request (the login)
$store = curl_exec($ch);
//the login is now done and you can continue to get the
//protected content.
//set the URL to the protected file
curl_setopt($ch, CURLOPT_URL, 'http://share-links.biz/manage?search='.$sl_search_file.'&chkFolder[]=XXXX&op=stimg_png&submit=los');
//execute the request
$content = curl_exec($ch);
//save the data to disk
//file_put_contents('~/download.zip', $content);
echo $content;




Zitieren