本文介绍了ParseUser Unity SDK缺少密码定义的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试使用来注册新的 ParseUser Unity SDK(第1.3.2节).我按照该教程进行操作,并使用下面的代码进行注册,但是,出现错误:

I am trying to signup a new ParseUser using the Unity SDK (Parse 1.3.2). I follow the tutorial and use the code below to do the signup, however, I get an error:

"Parse.ParseUser"不包含密码"的定义

为什么它可以识别用户名和电子邮件,但不能识别密码?真让我发疯...

Why does it recognize Username and Email, but not Password? It is driving me nuts...

我的代码:

var user = new ParseUser()
 {
         Password= myPassword,
         Username = name,
         Email = "[email protected]"
 };

 user.SignUpAsync();

推荐答案

使用以下代码即可:

var user = new ParseUser();
user.setEmail(Email);
user.setUserName(..);
user.setPassword(..);

这篇关于ParseUser Unity SDK缺少密码定义的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

06-29 11:50