pub fn get_shared_links<'a>(
client: &'a impl UserAuthClient,
arg: &'a GetSharedLinksArg,
) -> impl Future<Output = Result<GetSharedLinksResult, Error<GetSharedLinksError>>> + Send + 'a
👎Deprecated: replaced by list_shared_links
Available on crate features
async_routes
and dbx_sharing
only.Expand description
Returns a list of LinkMetadata
objects for this user, including collection links. If no path
is given, returns a list of all shared links for the current user, including collection links,
up to a maximum of 1000 links. If a non-empty path is given, returns a list of all shared links
that allow access to the given path. Collection links are never returned in this case.