1

Windows Phone でプッシュ通知受信メッセージのターゲット ページを設定する必要があります。トースト プッシュ通知を送受信できますが、受信したトースト メッセージをクリックすると、メイン ページに移動します。トースト メッセージをクリックすると、ターゲット ページでアプリを開く必要があります。この問題に直面している理由と、コードの何が問題なのか教えてください。

私のコードは以下のとおりです。

C# 受信ターゲット ページ:

 void PushChannel_ShellToastNotificationReceived(object sender, NotificationEventArgs e)
    {
        StringBuilder message = new StringBuilder();
        string relativeUri = string.Empty;

        message.AppendFormat("Received Toast {0}:\n", DateTime.Now.ToShortTimeString());

        // Parse out the information that was part of the message.
        foreach (string key in e.Collection.Keys)
        {
            message.AppendFormat("{0}: {1}\n", key, e.Collection[key]);

            if (string.Compare(
                key,
                "wp:Param",
                System.Globalization.CultureInfo.InvariantCulture,
                System.Globalization.CompareOptions.IgnoreCase) == 0)
            {
                relativeUri = e.Collection[key];

            }
        }

        // Display a dialog of all the fields in the toast.
        Dispatcher.BeginInvoke(() => MessageBox.Show(message.ToString()));

    }
    protected override void OnNavigatedTo(System.Windows.Navigation.NavigationEventArgs e)
    {
        base.OnNavigatedTo(e);

        //  If we navigated to this page
        // from the MainPage, the DefaultTitle parameter will be "FromMain".  If we navigated here
        // when the secondary Tile was tapped, the parameter will be "FromTile".
        textBlockFrom.Text = "Navigated here from " + this.NavigationContext.QueryString["NavigatedFrom"];

    }

プッシュ通知を送信するために PHP コードを使用しています。

  <?php 
  final class WindowsPhonePushDelay
  {

   const Immediate=0;

   private function __construct(){}
 }

 class WindowsPhonePushNotification
 {
  private $notif_url = '';

  function WindowsPhonePushNotification($notif_url)
  {
     $this->notif_url = $notif_url;
  }
  public function push($target,$message,$notif_url)
  {

   // Create the toast message
   $toastMessage = "<?xml version=\"1.0\" encoding=\"utf-8\"?>" .
            "<wp:Notification xmlns:wp=\"WPNotification\">" .
               "<wp:Toast>" .
                    "<wp:Text1>" . "SendToast" . "</wp:Text1>" .
                    "<wp:Text2>" . $message . "</wp:Text2>" .
                    "<wp:Param>/Receive.xaml?NavigatedFrom=Toast Notification</wp:Param>" .
                    "</wp:Toast> " .
            "</wp:Notification>";

  // Create request to send
     $r = curl_init();
     curl_setopt($r, CURLOPT_URL,$notif_url);
     curl_setopt($r, CURLOPT_RETURNTRANSFER, 1);
     curl_setopt($r, CURLOPT_POST, true);
     curl_setopt($r, CURLOPT_HEADER, true); 

  // add headers
     $httpHeaders=array('Content-type: text/xml; charset=utf-8', 'X-WindowsPhone-Target: toast',
                'Accept: application/*', 'X-NotificationClass: 2','Content-Length:'.strlen($toastMessage));
  curl_setopt($r, CURLOPT_HTTPHEADER, $httpHeaders);

  // add message
  curl_setopt($r, CURLOPT_POSTFIELDS, $toastMessage);

  // execute request
  $output = curl_exec($r);
  curl_close($r);

   }
}

?>

下の画像のように出力が必要です

ここに画像の説明を入力

4

1 に答える 1

0

トースト通知のペイロードの一部である wp:param は uri である必要があります。したがって、これも 1 つとしてエンコードする必要があります。提供している例では、ペイロードにスペースがあり、問題を引き起こしている可能性があります。このようにフォーマットしてみていただけますか?

  "<wp:Param>/Receive.xaml?NavigatedFrom=Toast%20Notification</wp:Param>" .

また、Receive.xaml が実際にパッケージのルートにあることを確認してください。

于 2013-09-04T09:03:36.753 に答える