解析登录错误域=解析代码= 209“无效的会话令牌”

时间:2018-07-11 06:18:37

标签: ios swift parse-platform

我需要很多帮助。我在Sign In Parse上看到了很多课程。显示以下错误:

  

[错误]:无效的用户名/密码。 (代码:101,版本:1.15.4)

我遇到了第二个错误,第一个错误,我的问题没有解决。而这里出现的错误只是无法弄清iphone X模拟器中的内容。

  

错误域=解析代码= 209“无效的会话令牌”   UserInfo = {code = 209,临时= 0,错误=无效的会话令牌,   NSLocalizedDescription =无效的会话令牌}。

另一方面,正常情况下会失败。我再重复一次。我无法在菜单中的数据下输入。我这样做是将其添加到控制器的Indentity故事板ID中。我写了代码。我给了这个错误。但是过渡不会发生...请在可能出现错误的地方提供帮助?过渡配置正确。密码和正确输入的邮件。我不明白为什么没有输入。我像在新版本的Parse中一样更改了代码。我将非常感谢您的帮助。

 @IBAction func signIn(_ sender: UIButton) {

        let email = usernameTF.text
        let password = passwordTF.text
        let spinner: UIActivityIndicatorView = UIActivityIndicatorView(frame: CGRect(x: 0, y: 0, width: 150, height: 150)) as UIActivityIndicatorView
        if email == "" || password == "" {
            self.alert(message: "Введите email или пароль ", title: "Ошибка")
        } else {

            PFUser.logInWithUsername(inBackground: usernameTF.text!, password: passwordTF.text!) { (user, error) in
                spinner.stopAnimating()

                if user != nil {

                        let menuVC = self.storyboard?.instantiateViewController(withIdentifier: "ViewController") as!ViewController

                        self.present(menuVC, animated: false, completion: nil)



                }else {
                    if let descrip = error?.localizedDescription{
                        self.displayErrorMessage(message: (descrip))
                    }
                }
            }
        }
    }

0 个答案:

没有答案