goodm
goodm

Reputation: 7295

Android - Download file from DropBox Hyperlink?

How I can download file from dropbox's hyperlink(http://db.tt/...). There is redirection to file with https.

So how to download the file directly from share link or get direct link to the file?

Upvotes: 0

Views: 1117

Answers (1)

user94559
user94559

Reputation: 60143

  1. Request the db.tt URL and take a look at the Location header, which will tell you where the short link redirects to.
  2. Replace "www.dropbox.com" in that URL with "dl.dropboxusercontent.com". (See https://www.dropbox.com/help/201/en.)
  3. Issue a normal GET request to download the content.

Upvotes: 2

Related Questions