Xamarin Forms Parse SDK 空引用
Xamarin Forms Parse SDK Null Ref
我正在尝试将 Xamarin Forms PCL 与 Parse 结合使用。我已经将 Parse Component 安装到 Android 项目。我在本地主机上有一个解析服务器 运行,我已经成功测试并添加了一个用户。尽管一切似乎都已正确设置,但我尝试调用的任何 Parse API 都得到了一个空引用异常。我的代码如下:
ParseClient.Configuration config = new ParseClient.Configuration
{
ApplicationId = "my-app-id",
Server = "http://localhost:1337/parse/"
};
ParseClient.Initialize(config);
var user = await ParseUser.LogInAsync("steve", "abc123");
Console.WriteLine("Got User {0}.", user.Username);
我在调用 LogInAsync 时得到一个空引用。如果有人有任何经验或建议,将不胜感激。谢谢!
localhost 将指向您的 Android emulator/device。您需要使用本地服务器的 IP 或 FQDN – Jason 18 分钟前
我正在尝试将 Xamarin Forms PCL 与 Parse 结合使用。我已经将 Parse Component 安装到 Android 项目。我在本地主机上有一个解析服务器 运行,我已经成功测试并添加了一个用户。尽管一切似乎都已正确设置,但我尝试调用的任何 Parse API 都得到了一个空引用异常。我的代码如下:
ParseClient.Configuration config = new ParseClient.Configuration
{
ApplicationId = "my-app-id",
Server = "http://localhost:1337/parse/"
};
ParseClient.Initialize(config);
var user = await ParseUser.LogInAsync("steve", "abc123");
Console.WriteLine("Got User {0}.", user.Username);
我在调用 LogInAsync 时得到一个空引用。如果有人有任何经验或建议,将不胜感激。谢谢!
localhost 将指向您的 Android emulator/device。您需要使用本地服务器的 IP 或 FQDN – Jason 18 分钟前