1

This used to work before I updated to Swift 3, but I don't think this is really coming from this. Here is my problem:

I would like to create a Dropbox sharable link from my Swift app as follow:

client.sharing.createSharedLinkWithSettings(path: myPath).response { response, error in
   if let link = response {
      // share the link
   } else {
      print(error)
   }
}

but this is the error I get:

[request-id 431f08cc7e243504a437cec661247dd2] API route error - {
   ".tag" = "email_not_verified";
}

and I don't really understand how should I verify the email. I can log in with dropbox, I authorised the app, I can write files and folders, etc.

magohamote
  • 1,484
  • 1
  • 17
  • 29
  • Did Dropbox send you a verification email? – sdasdadas Feb 08 '17 at 12:50
  • @sdasdadas thank you. I didn't received any email because the configured server was a POP one I haven't access to. I tried with another account and I got the verification email! – magohamote Feb 08 '17 at 13:49

1 Answers1

0

I didn't received a verification email on my device. I tried with a different account and received this verification email from dropbox.

magohamote
  • 1,484
  • 1
  • 17
  • 29