gpt4 book ai didi

android - 查询用户 "this authentication method is unsupported"时出现问题

转载 作者:太空狗 更新时间:2023-10-29 14:50:43 24 4
gpt4 key购买 nike

我在本地执行了使用解析平台的迁移过程。我已经部署了 parse-server-example在我的本地主机上并在 mongolab 上托管数据库。第一步是我尝试使用本地解析服务器和托管在 mongolab 上的数据库实例注册用户。

这是 index.js本地部署的解析服务器,以下是android的代码 fragment 。

// Enable Local Datastore.
Parse.enableLocalDatastore(this);
Stetho.initializeWithDefaults(this);
// Add your initialization code here
//Parse.initialize(this);
Parse.initialize(new Parse.Configuration.Builder(getApplicationContext())
.applicationId("my app id")
.clientKey("my client key")
.server("http://10.12.41.250:1337/parse/") // '/' important after 'parse'
.addNetworkInterceptor(new ParseStethoInterceptor())
.build());
....
....

final ParseUser parseUser = new ParseUser();
parseUser.setUsername(edtUsername.getText().toString());
parseUser.setPassword(edtPassword.getText().toString());
parseUser.signUpInBackground(new SignUpCallback() {
@Override
public void done(ParseException e) {
if (e == null) {
Toast.makeText(SignUpActivity.this, "You are now registered.", Toast.LENGTH_SHORT).show();
//Success
} else {
Toast.makeText(SignUpActivity.this, e.getMessage(), Toast.LENGTH_SHORT).show();
Log.d(TAG, e.getMessage());
//Failure
}
}
});

执行此操作后,我收到带有错误消息“此身份验证方法不受支持”的 ParseRequestException,现在我不知道这是怎么回事,目前我唯一发现的是 This .

以下是网络拦截器的详细信息。

error

如有任何帮助,我们将不胜感激。

最佳答案

所以,这是一个问题,它是 Fixed现在。

关于android - 查询用户 "this authentication method is unsupported"时出现问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35624798/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com