WP Cloud Plugins
PluginsPlayground ↗⏵ Open Ticket
  • Getting Started
    • System Requirements
    • Installation
    • Connect a Cloud Account
    • Add your First Module
    • How to Update?
  • Licensing
    • Activate License
    • Deactivate/Move license
    • Local/Staging sites
    • License FAQ
  • Global Options
    • Layout
    • Personal Folders
    • Review & Approve
    • Integrations
    • Notifications
    • Permissions
    • Usage Limits
    • Security
    • Advanced
    • Statistics
    • Tools
  • Modules
    • Module Manager
    • Module Configurator
      • Content
      • Accessibility
      • Dynamic Folders
      • Actions
      • Review & Approve
      • Layout
      • Sort Order
      • Filters
      • Upload Settings
      • Usage Limits
      • Notifications
    • Modules
      • Audio player
      • Button
      • Embed
      • File Browser
      • Gallery
      • List
      • Review & Approve
      • Search Box
      • Slider / Carousel
      • Upload Box
      • Video player
  • Features
    • Dynamic Folders
      • Automatic mode
      • Manual mode
    • Personal Folders
      • FAQs
    • Embed documents
    • Import to Media Library
    • Video Advertisements
    • Statistics
    • Webhooks
  • Integrations
    • Advanced Custom Fields (ACF)
    • Form Plugins
      • Contact Form 7
      • Fluent Forms
      • Formidable Forms
      • Gravity Forms
      • GravityPDF
      • NinjaForms
      • WPForms
    • Page Builders
      • Beaver Builder
      • Classic Editor
      • Divi Page Builder
      • Gutenberg
      • Elementor
    • Slack
    • Uncanny Automator
    • WooCommerce
      • Digital Downloads
      • Order Uploads
    • Easy Digital Downloads (EDD)
  • Developers
    • Actions
    • API
      • copy()
      • copy_folder_recursive()
      • create_folder()
      • create_edit_url()
      • create_preview_url()
      • create_shared_url()
      • create_temporarily_download_url()
      • delete()
      • download()
      • get_entry()
      • get_folder()
      • move()
      • patch()
      • rename()
      • set_account_by_id()
      • set_drive_by_id()
      • upload_file()
    • Filters
    • Placeholders
  • Other
    • FAQs
    • Translations
    • Vulnerabilities
    • Support
      • Scope
      • Open a Support Ticket
    • About Us
    • Changelog
Powered by GitBook
On this page
  1. Developers
  2. API

create_temporarily_download_url()

Previouscreate_shared_url()Nextdelete()

Last updated 6 months ago

Create a temporarily download url

create_temporarily_download_url()

Create a temporarily download url for a file or folder.

Parameters

Name
Type
Description

$id

string

ID of the entry

Return

Name
Type
Description

$url

string

A temporarily download link for the requested file or folder. The link is valid for ~ 15 minutes.

Usage

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;

Not supported. Use instead

Parameters

Name
Type
Description

$id

string

ID of the entry

Return

Name
Type
Description

$link_data

TemporyLink

A Dropbox TemporyLink object

Usage

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;

Parameters

Name
Type
Description

$id

string

ID of the entry

Return

Name
Type
Description

$url

string

A temporarily download link for the requested file or folder. The link is valid for ~ 15 minutes.

Usage

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()