Hey i am try to get the share link from drop box but it only works fro first time second time it through error shared_link_already_exist. please help me to how to get that share link. Thanks For the Help
here is my code
func GetPath(shortPath:String) {
DropboxClientsManager.authorizedClient?.sharing.createSharedLinkWithSettings(path: shortPath).response(queue: .main, completionHandler: { (response, error) in
if let link = response {
print(link.url)
} else {
print(error!)
}
})
}