I am creating a sharing link using
client.sharing.createSharedLinkWithSettings(path: "/MyTestPath").response { response, error in
if let link = response {
let linkURL = link.url
// Send linkURL to be accessed through another DB account in another app
} else {
print("Error sharing:", error)
}
}
I would like to open this generated link in a different app with a different Dropbox account. And then to access the shared folder in order to up- and download files by the app.
Unfortunately, I am stuck and seem to be missing something. Can anyone point me in the right direction? Thanks very much.