嘿,我试图从下拉框获取共享链接,但它只能在第二次第二次通过错误shared_link_already_exist时起作用。请帮我看看如何获得该分享链接。谢谢你的帮助
这是我的代码
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!)
}
})
}