Windows phone 8 在WP8中实现parse.com推送通知时出错

Windows phone 8 在WP8中实现parse.com推送通知时出错,windows-phone-8,push-notification,parse-platform,Windows Phone 8,Push Notification,Parse Platform,跟踪项目,但它不起作用 代码: 错误: $exception{System.Reflection.TargetInvocationException:调用的目标已引发异常。-->System.NotImplementedException:方法或操作未实现。 在Windows.Storage.ApplicationData.get_LocalSettings()中 在Parse.PlatformHooks.SettingsWrapper..ctor()处 在Parse.PlatformHooks

跟踪项目,但它不起作用

代码: 错误:
$exception{System.Reflection.TargetInvocationException:调用的目标已引发异常。-->System.NotImplementedException:方法或操作未实现。
在Windows.Storage.ApplicationData.get_LocalSettings()中
在Parse.PlatformHooks.SettingsWrapper..ctor()处
在Parse.PlatformHooks.SettingsWrapper.get_Wrapper()处
在Parse.PlatformHooks.get_ApplicationSettings()上
在Parse.ParseClient.get_ApplicationSettings()处
在Parse.ParseClient.get_InstallationId()处
在Parse.ParseClient.Initialize处(字符串applicationId,字符串dotnetKey)
在MyApp.App..ctor()上
---内部异常堆栈跟踪结束--
位于System.RuntimeMethodHandle.InvokeMethod(对象目标、对象[]参数、签名符号、布尔构造函数)
在System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr、Binder Binder、Object[]参数、CultureInfo区域性)
在MS.Internal.TypeProxy.c__DisplayClass32.b__2c()中
位于MS.Internal.TypeProxy.CreateInstance(UInt32 customTypeId)
在MS.Internal.FrameworkCallbacks.createKnownoObject(IntPtr nativeRootPeer,UInt32 customTypeId,String initializationString,IntPtr&nativePeer,UInt32 isCreatedByParser)}System.Exception{System.Reflection.targetingexception}
不知道这里发生了什么。

非常感谢您的帮助。

我遇到了完全相同的错误,在最新版本的Parse.Phone.dll中,Parse似乎使用了一些为Windows设计的类,而不是Windows Phone。我提出的唯一解决方案是使用旧版本的parse for WP(在我的例子中是1.2.16)。希望您会发现它有用

这不是答案,我将发布我的解决方案。如果您有更好的解决方案,请随时与社区共享!
public App()
    {
        // Global handler for uncaught exceptions. 
        UnhandledException += Application_UnhandledException;

        // Standard Silverlight initialization
        InitializeComponent();

        // Phone-specific initialization
        InitializePhoneApplication();

        ParseClient.Initialize("ParseAppId", "ParseDotNetKey");
        this.Startup += async (sender, args) =>
        {
            // This optional line tracks statistics around app opens, including push effectiveness:
            ParseAnalytics.TrackAppOpens(RootFrame);

            // By convention, the empty string is considered a "Broadcast" channel
            // Note that we had to add "async" to the definition to use the await keyword
            await ParsePush.SubscribeAsync("");
        };
    }
$exception  {System.Reflection.TargetInvocationException: Exception has been thrown by the        target of an invocation. ---> System.NotImplementedException: The method or operation is not implemented.  
at Windows.Storage.ApplicationData.get_LocalSettings()  
at Parse.PlatformHooks.SettingsWrapper..ctor()  
at Parse.PlatformHooks.SettingsWrapper.get_Wrapper()  
at Parse.PlatformHooks.get_ApplicationSettings()  
at Parse.ParseClient.get_ApplicationSettings()  
at Parse.ParseClient.get_InstallationId()  
at Parse.ParseClient.Initialize(String applicationId, String dotnetKey)  
at MyApp.App..ctor()  
--- End of inner exception stack trace ---  
at System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)  
at System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)  
at MS.Internal.TypeProxy.<>c__DisplayClass32.<GetCreateObjectDelegate>b__2c()  
at MS.Internal.TypeProxy.CreateInstance(UInt32 customTypeId)  
at MS.Internal.FrameworkCallbacks.CreateKnownObject(IntPtr nativeRootPeer, UInt32 customTypeId, String initializationString, IntPtr& nativePeer, UInt32 isCreatedByParser)}   System.Exception {System.Reflection.TargetInvocationException}