Загрузить изображение в Dropbox с помощью SwiftyDropbox

Я пытаюсь загрузить изображение в UIImageView в Dropbox, используя SwiftyDropbox и Swift 3.0. Когда я нажимаю кнопку, ничего не происходит после первого оператора печати. Что я делаю неправильно.

 import UIKit
 import SwiftyDropbox

 class ViewController: UIViewController {

let client = DropboxClientsManager.authorizedClient

@IBOutlet weak var myPhotoView: UIImageView!


@IBAction func logInAction(_ sender: Any) {
    myButtonPressed()
}

@IBAction func sendPhotoAction(_ sender: Any) {
    print("Button Pressed")

    let fileData = UIImageJPEGRepresentation(myPhotoView.image!, 1.0)
    //let compressedJPGImage = UIImage(data: fileData!)
    let path = "/"
    client?.files.upload(path: path, mode: .overwrite, autorename: true, clientModified: nil, mute: false, input: fileData!).response{ response, error in
        if let _ = response { // to enable use: if let metadata = response {
            print("OK")
        } else {
            print("Error at end")
        }
    }
}

override func viewDidLoad() {
    super.viewDidLoad()
    // Do any additional setup after loading the view, typically from a nib.
}

override func didReceiveMemoryWarning() {
    super.didReceiveMemoryWarning()
    // Dispose of any resources that can be recreated.
}


func myButtonPressed(){
    DropboxClientsManager.authorizeFromController(UIApplication.shared, controller: self, openURL: {(url:URL) -> Void in UIApplication.shared.openURL(url)
})
}


}

1 ответ

Если ваш клиент ноль, то вы не вошли в систему. Попробуйте войти и сделать это снова. В противном случае это должно работать нормально.

https://dropbox.github.io/SwiftyDropbox/api-docs/latest/index.html

Другие вопросы по тегам