我几天前找到了mediafire API。
http://developers.mediafire.com
我在互联网上搜索无论如何要使用API创建一个用于将文件上传到mediafire帐户的网络应用程序。不幸的是我没有找到任何东西。有人知道如何使用mediafire API和PHP创建上传Web应用程序的文件。
答案 0 :(得分:12)
首先获取会话令牌。
$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;
现在使用这个新的$session
密钥上传文件。
$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并编写了这段代码。所以它不会在第一次工作。您需要修改才能使其正常工作。