Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
612
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. awsUserPool?.signUp(username, password: password,
  2. userAttributes: attributes,
  3. validationData: nil).continueWith
  4. {
  5. DispatchQueue.main.async(execute: {
  6. if let error = task.error as NSError? {
  7. print("Error: (error.userInfo["message"] as? String)")
  8. } else if let result = task.result {
  9. ..........
  10. }
  11. })
  12. return nil
  13. }
  14.  
  15. Error: Optional("Unable to verify secret hash for client 7xyyabcdefgh#########")
  16.  
  17. Error: Optional("App client ab12######### is not configured
  18. for secret but secret hash was received")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement