如何从swift中的dropbox获取共享链接

时间:2018-01-23 04:04:33

标签: swift swiftydropbox

嘿,我试图从下拉框获取共享链接,但它只能在第二次第二次通过错误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!)           

        }
    })


}

0 个答案:

没有答案