ParseClient.Initialize("应用程序ID"," .NET密钥")错误。 Windows Phone 8 - Parse.com

时间:2014-10-03 22:33:06

标签: windows-phone-8 parse-platform

我正在尝试按照快速入门指南连接到我在Parse.com上创建的Windows Phone 8应用程序 https://www.parse.com/apps/quickstart#parse_data/mobile/windows_phone/existing

当我运行应用程序(c#,XAML)时,方法中引发异常:App() - 位于文件中的构造函数:App.xaml.c。

            try
            {
                ParseClient.Initialize("I inserted my Application ID here", "my .NET key");
            }
            catch (ParseException pex)
            {
                Debug.WriteLine("\n\n**** ParseException Error ***** \n\n");
                Debug.WriteLine(pex.Message);
            }
            catch (Exception ex)
            {
                Debug.WriteLine("\n\n\n**** Exception Error  **** \n\n" + ex.Message);
            }

ParseClient.Initialize引发异常:错误消息是: Parse.Phone.DLL中发生了'System.NotImplementedException'类型的第一次机会异常

因此,我在运行应用程序时甚至看不到启动屏幕。它在开始之前崩溃了。

感谢您的任何建议/帮助。

1 个答案:

答案 0 :(得分:3)

尝试恢复到1.2.16

  unInstall-Package parse
  Install-Package parse -Version 1.2.16
这对我有所帮助。

欢呼声