5

我正在使用 Dropbox REST API,并且可以成功检索文件的共享 URL。

https://www.dropbox.com/developers/reference/api#shares

但是,共享链接会将用户带到 dropbox.com 上的预览页面,而我正在寻找用户可以直接下载文件的直接链接。例如。右键,另存为...

4

3 回答 3

13

事实证明,返回的默认分享 url 是一个短 url,短 url 将始终指向 Dropbox 预览页面。

因此,您需要通过将 short_url 参数设置为 false 来让 REST API 返回完整的 url。一旦你有了完整的 url,然后在 url 的末尾添加 ?dl=1 。

例如:https ://dl.dropbox.com/s/xxxxxxxxxxxxxxxxxx/MyFile.pdf?dl=1

更多信息

https://www.dropbox.com/help/201/en

提示用户保存从 Dropbox 下载的内容

PHP 示例

这个例子借用/启发了这些代码示例: http ://www.phpriot.com/articles/download-with-curl-and-php

http://www.humaan.com.au/php-and-the-dropbox-api/

/* These variables need to be defined */
$app_key = 'xxxxxxxx';
$app_secret = 'xxxxxxxxxxxxxxxxxxxx';
$user_oauth_access_token = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx';
$user_oauth_access_token_secret = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx';    

$ch = curl_init(); 

$headers = array( 'Authorization: OAuth oauth_version="1.0", oauth_signature_method="PLAINTEXT"' );

$params = array('short_url' => 'false', 'oauth_consumer_key' => $app_key, 'oauth_token' => $user_oauth_access_token, 'oauth_signature' => $app_secret.'&'.$user_oauth_access_token_secret);

curl_setopt( $ch, CURLOPT_HTTPHEADER, $headers );
curl_setopt( $ch, CURLOPT_POSTFIELDS, $params);
curl_setopt( $ch, CURLOPT_URL, 'https://api.dropbox.com/1/shares/'.$dir );

/*
* To handle Dropbox's requirement for https requests, follow this:
* http://artur.ejsmont.org/blog/content/how-to-properly-secure-remote-api-calls-from-php-application
*/
curl_setopt( $ch, CURLOPT_CAINFO,getcwd() . "\dropboxphp\cacert.pem");
curl_setopt( $ch, CURLOPT_SSL_VERIFYHOST, 2);
curl_setopt( $ch, CURLOPT_SSL_VERIFYPEER, TRUE);

curl_setopt( $ch, CURLOPT_RETURNTRANSFER, TRUE );
$api_response = curl_exec($ch);

if(curl_exec($ch) === false) {
    echo 'Curl error: ' . curl_error($ch);
}

$json_response = json_decode($api_response, true);

/* Finally end with the download link */
$download_url = $json_response['url'].'?dl=1';
echo '<a href="'.$download_url.'">Download me</a>';
于 2012-10-29T03:34:15.333 回答
2

只需?dl=1在链接末尾添加

来自: https ://www.dropbox.com/s/spfi4x1z600sqpg/background.jpg?dl=0

至: https ://www.dropbox.com/s/spfi4x1z600sqpg/background.jpg?dl=1

于 2015-07-22T08:28:30.050 回答
1

寻找类似解决方案以获取直接链接以下载跳过 Dropbox 下载窗口的文件的人们可以使用 API 版本 2 中添加的“获取临时链接”端点。

https://www.dropbox.com/developers/documentation/http/documentation#files-get_temporary_link

获取用于流式传输文件内容的临时链接。此链接将在四个小时后过期,之后您将收到 410 Gone。链接的 Content-Type 由文件的 mime 类型自动确定。

于 2016-10-10T16:58:37.543 回答