rocksky/dropbox

app.rocksky.dropbox.* — read files from the user’s connected Dropbox.

Values

pub fn download_file(
  file_id file_id: String,
) -> rocksky.Request(dynamic.Dynamic)

app.rocksky.dropbox.downloadFile — proxy a file download by id. Returns raw bytes; the SDK still types it as Dynamic.

pub fn get_files() -> rocksky.Request(dynamic.Dynamic)

app.rocksky.dropbox.getFiles — list files. Use with_at for a path.

pub fn get_metadata(
  path path: String,
) -> rocksky.Request(dynamic.Dynamic)

app.rocksky.dropbox.getMetadata — get metadata for a single file.

pub fn get_temporary_link(
  path path: String,
) -> rocksky.Request(dynamic.Dynamic)

app.rocksky.dropbox.getTemporaryLink — short-lived download link.

pub fn with_at(
  req: rocksky.Request(a),
  at: String,
) -> rocksky.Request(a)
Search Document