I am using below code and followed all configuration steps, but getting error only : "Unable to verify link request"
DropboxClientsManager.authorizeFromController(sharedWorkspace: NSWorkspace.shared,
controller: self,
openURL: { (url: URL) -> Void in
NSWorkspace.shared.open(url)
})
let scopeRequest = ScopeRequest(scopeType: .user, scopes: ["account_info.read"], includeGrantedScopes: false)
DropboxClientsManager.authorizeFromControllerV2(
sharedWorkspace: NSWorkspace.shared,
controller: self,
loadingStatusDelegate: nil,
openURL: {(url: URL) -> Void in NSWorkspace.shared.open(url)},
scopeRequest: scopeRequest
)