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 = $password;
$sessionToken = $mflib->userGetSessionToken();
$uploadKey = $mflib->fileUpload($sessionToken, "500px-PHP.png");
$mp3=$mflib->fileGetLinks($quickkey,'direct_download',$sessionToken);
But it gives me the following error:
Error - Get file links : "Invalid parameter 'quickkey' specified" (0)
The file is already uploaded but I can't get the link I trying to get the $quickkey. What is the right way to get it?