0

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

        }
    })


}
4

0 回答 0