Last updated 6 months ago
create_temporarily_download_url()
Create a temporarily download url for a file or folder.
$id
string
ID of the entry
$url
A temporarily download link for the requested file or folder. The link is valid for ~ 15 minutes.
WPCP_ONEDRIVE_API::set_account_by_id('8c9bacda0-d8d8-4b22-b634-7b5281687575'); WPCP_ONEDRIVE_API::set_drive_by_id('b!DlaHWskCed_MIid3KpJH5Lbatf9HsdXBAZH5YcvPAbMhJUKzTJyzgvXZYpBS'); // Create temporarily download url $temporarily_url = WPCP_ONEDRIVE_API::create_temporarily_download_url('01EXLSWHRCD7RDL3HX65BK5X3ULXLWSICN'); // Redirect user to download url header('Location: '.$temporarily_url); exit;
$link_data
TemporyLink
A Dropbox TemporyLink object
WPCP_DROPBOX_API::set_account_by_id('dbid:AADSy6JxzbgqCs4A43CAAAfO9xvZwpcsLU'); // Create temporarily download url $link_data = WPCP_DROPBOX_API::create_temporarily_download_url('id:4tUAwPCAdf0b0AAAAA_iw'); // Get url $temporarily_url = $link_data->getLink(); // Redirect user to download url header('Location: '.$temporarily_url); exit;
WPCP_BOX_API::set_account_by_id('29232154182'); // Create temporarily download url $temporarily_url = WPCP_BOX_API::create_temporarily_download_url('511426724354'); // Redirect user to download url header('Location: '.$temporarily_url); exit;
download()