Questions tagged [mediafire]

Use this tag on questions related to MediaFire APIs. Using the API can help upload, download and manage data.

MediaFire is a cloud storage service that helps people store, organize, and share data via the Internet. MediaFire offers free and secure cloud storage so users can store and share data with their customers, colleagues, friends, and family. MediaFire’s Professional and Business plans offer users additional functionality, like company branding tools, analytics, and multi-seat employee accounts.

Please visit the Developer's Wiki for more information about the API.

MediaFire provides two set of APIs for developers.

  1. Media Conversion API
  2. REST API
38 questions
69
votes
3 answers

How to add header data in XMLHttpRequest when using formdata?

I'm trying to implement a file upload API, given here : Mediafire file Upload I am successfully able to upload the Post data & Get data, but have no clue how to send the x-filename attribute, which is meant to be Header data as given in API…
8
votes
1 answer

Mediafire API PHP Development

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…
Sasindu H
  • 1,538
  • 7
  • 24
  • 43
4
votes
1 answer

Mediafire developer doesn't show me Create new app

I have placed a ticket to mediafire tech support (twice) without answer: I have created two different accounts, totally different info, one free and one Pro (pay). None of them show me the Create new application box in My…
Aram Alvarez
  • 536
  • 6
  • 21
2
votes
2 answers

Render JSON response using Django's render()

I am working my way through Django's tutorial but failing to display an API response using Django's render() function. models.py ... class MF_Version(): def get_MF_Version(self): url =…
spaud12
  • 21
  • 1
  • 1
  • 5
2
votes
0 answers

how can i get quickkey after upload file into mediafire?

Array ( [result] => 0 [status] => 6 [description] => Waiting for verification [fileerror] => [quickkey] => [hash] => [filename] => [size] => [created] => [revision] => [resumable_upload] => …
Hussy Borad
  • 626
  • 5
  • 20
2
votes
1 answer

MediaFire Rest API session signature SHA1?

I'm trying to connect to MediaFire using their API. According to the documen the get_session_token request one of the required parameters is: signature: a SHA1-hashed string that contains the following 4 elements in this sequence: email + password…
Shimmy Weitzhandler
  • 101,809
  • 122
  • 424
  • 632
1
vote
1 answer

How to upload a file to mediafire with Ruby?

I'm searching along months (maybe 1 year) a way to upload a file to mediafire. I know mediafire use flash, I know mediafire API is so private... But I know too a program called "File&Image uploader" that can upload files to mediafire (HOW?!) my…
ElektroStudios
  • 19,105
  • 33
  • 200
  • 417
1
vote
1 answer

Upload file to mediafire without api python script

I want to upload file to mediafire without API Delevoper(because when users use their accounts) But I see mediafire api used Developer so i don't want to use it I want to somethings like it: import mediafire_uploader as…
Dile
  • 516
  • 3
  • 13
1
vote
2 answers

MediaFire direct link in Python?

I'm making a package management utility for Minecraft mods, a lot of which are distributed using MediaFire. I'd like to be able to download the mod files directly off MediaFire. I tried poking around in the page source, but I don't know enough HTML…
nonpolynomial237
  • 2,109
  • 4
  • 27
  • 35
1
vote
1 answer

Can't download my own executeable c#

I just made a small and simple windows form. I uploaded the .exe to mediafire so anyone could download it, but when someone(or even myself) tries to download it: windows defender instantly deletes it, because it thinks it is a virus. Is this a…
Aiko
  • 153
  • 2
  • 16
1
vote
1 answer

Is there any way to download Mediafire links?

I'm writing a program that reads in a text file of artists and albums, and spits out Mediafire download links. I want to take it a step further and actually have it download those links, but I don't know if there's a way to do that.
Tim
  • 11
  • 1
  • 2
1
vote
0 answers

How can I get quickkey after upload file into mediafire specific folder?

After upload file i am getting this response. Array ( [result] => 0 [status] => 6 [description] => Verifying File [fileerror] => [quickkey] => [hash] => [filename] => [size] => [created] => [revision] =>…
Hussy Borad
  • 626
  • 5
  • 20
1
vote
2 answers

Upload file to Mediafire with C#

I read a lot in Mediafire developers section ,but it's seems that they are not provided libraries for C# developers, so i tried to use their web services API's The normal scenario to upload a file as following: 1- Request for session_token through…
ASalameh
  • 783
  • 1
  • 8
  • 29
1
vote
1 answer

How to completely delete file on MediaFire

Is there a way to delete file directly, bypassing Trash folder, using Mediafire API? When I try to delete file, I call the method http://www.mediafire.com/api/file/delete.php, which moves file in the Trash. It seems this folder can be purged only…
NGC 224
  • 13
  • 1
  • 6
1
vote
2 answers

Get link after upload file on mediafire api

Hi, I am trying to get file link after upload afile using mediafire api $appId = ""; $apiKey = ""; $email = ""; $password = ""; include("../mflib.php"); $mflib = new mflib($appId, $apiKey); $mflib->email = $email; $mflib->password =…
user1545662
  • 11
  • 1
  • 2
1
2 3