Mediafire API PHP Development
Asked Answered
E

1

8

I found mediafire API few days ago.

http://developers.mediafire.com

and I search over the internet is there anyway to make a web app for upload files to mediafire account using API. Unfortunately I haven't found anything. Is anybody know how to create a file uploading web app with mediafire API and PHP.

Elda answered 27/12, 2012 at 10:27 Comment(1)
You gave an answer to your own question: developers.mediafire.com/index.php/REST_API and more specifically: developers.mediafire.com/index.php/REST_API#uploadOutwear
T
13

First get a session token.

$apikey = 'YOUR API KEY HERE';
$appid = 'APPLICATIONID';
$email = '[email protected]';
$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;

Now with this new $session key upload a file.

$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);

Important Note: Please try it yourself. I have not tested it. Just saw the API and wrote this code. So it wont work on first go. You'll need to modify to make it work.

Tied answered 27/12, 2012 at 10:51 Comment(6)
Hi, I'm a .NET developer, what's the sha1 function? I'm trying to do it in .NET, but it doesn't work, here's my attempt: rextester.com/PVGYX5752Dinodinoflagellate
Hi, I'm a .NET developer, what's the sha1 function? I'm trying to do it in .NET, but it doesn't work, here's my attempt. I posted a new question, please take a look.Dinodinoflagellate
It calculates sha1 hash.Tied
I wanted to know HOW it does it. Anyway I already got my question answered so don't bother.Dinodinoflagellate
good answer, but a few issues "$session = $json->response->session_token;" should be "$session = $obj->response->session_token;" "('[email protected]$apikey')," shouldn't have a $ before the api keyEleanor
Thanks @MatthewBucci. Fixed those things.Tied

© 2022 - 2024 — McMap. All rights reserved.