我几天前找到了mediafire API.
http://developers.mediafire.com
我在互联网上搜索是为了使用API创建一个上传文件到mediafire帐户的网络应用程序.不幸的是我没有找到任何东西.有人知道如何使用mediafire API和PHP创建上传Web应用程序的文件.
首先获取会话令牌.
原文链接:https://www.f2er.com/php/137732.html$apikey = 'YOUR API KEY HERE'; $appid = 'APPLICATIONID'; $email = 'your@email.com'; $passwd = 'PASSWORD'; $params = http_build_query(array( 'email' => $email,'password'=> $passwd,'application_id' => $appid,'signature' => sha1("$email$passwd$appid$apikey"),'response_format' => 'json' )); $fp = fopen('https://www.mediafire.com/api/user/get_session_token.PHP?'.$params,'r'); $json = stream_get_contents($fp); $obj = json_decode($json); fclose($fp); $session = $obj->response->session_token;
$filecontents = file_get_contents("/path/to/file"); $filesize = strlen($filecontents); $opts = array( 'http'=>array( 'method'=>"POST",'header'=> "x-filename : ANYFILENAMEYOUWANT\r\n". "x-filesize : $filesize\r\n" ) ); $context = stream_context_create($opts); $params = http_build_query(array( "session_token" => $session )); $fp = fopen('http://www.mediafire.com/api/upload/upload.PHP?'.$params,'r',false,$context); fwrite($fp,$filecontents); $result = stream_get_contents($fp); fclose($fp);
重要说明:请亲自尝试.我没有测试过.刚看到API并编写了这段代码.所以它不会在第一次工作.您需要进行修改才能使其正常工作.