使用 php 发送 Windows Phone 7 的推送通知

发布于 2024-12-12 02:59:56 字数 170 浏览 0 评论 0原文

我是一名网络开发人员(PHP)。我想使用 PHP 搜索 Windows Phone 7 的推送通知,但结果始终是 .NET。

请有人可以帮助我。

更新:如何一次发送多台设备?因为延迟时间在1秒左右,所以如果我有1000个设备要推送,我可能需要等待1000秒。

I'm a web developer (PHP). I would like to searching for push notification to windows phone 7 using PHP but the result is always .NET.

Please someone can help me.

UPDATE : How to send multi-devices at once? because the delay time is around 1 second, so if I have 1000 devices to push, I may need 1000 seconds to wait.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

这样的小城市 2024-12-19 02:59:56

以下是向 URL“_URL_TO_SEND_TO_”发送 Toast 通知的 PHP 代码,该 URL 是从 MPNS 收到的令牌:

<?php
   // 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>" . "Text Message" . "</wp:Text2>" .
                        "</wp:Toast> " .
                "</wp:Notification>";

    // Create request to send
    $r = curl_init();
    curl_setopt($r, CURLOPT_URL,_URL_TO_SEND_TO_);
    curl_setopt($r, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($r, CURLOPT_POST, true);
    curl_setopt($ch, 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);
  ?>  

如果这是您需要的代码,请检查此答案。

The following is the PHP code to send a toast notification to the URL "_URL_TO_SEND_TO_" which is the token received from the MPNS:

<?php
   // 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>" . "Text Message" . "</wp:Text2>" .
                        "</wp:Toast> " .
                "</wp:Notification>";

    // Create request to send
    $r = curl_init();
    curl_setopt($r, CURLOPT_URL,_URL_TO_SEND_TO_);
    curl_setopt($r, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($r, CURLOPT_POST, true);
    curl_setopt($ch, 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);
  ?>  

If this is the code you need, please check this answer.

删除→记忆 2024-12-19 02:59:56

您不需要在 .NET 中实现它。您只需将正确的 XML 负载发送到手机给出的 URL 即可。

查看这篇关于在Windows Phone 7

基本步骤是:

  1. 获取推送通知端点 URL(这是通过您的应用程序完成的)
    电话)。
  2. 将该 URL 发送到您的 Web 服务(该 Web 服务采用 PHP 语言,
    .NET,无论你喜欢什么)。
  3. 将您的 XML 负载发送到获得的 URL
    在步骤 1 中,用户将收到推送通知。

You don't need to implement it in .NET. You just need to send the correct XML payload to the URL given by the phone.

Take a look at this article on implementing push notifications on Windows Phone 7.

The basic steps are:

  1. Obtain PUSH Notification end point URL (this is done via your app on
    the phone).
  2. Send that URL to your web service (this web service be in PHP,
    .NET, whatever you like).
  3. Send your XML payload to the URL obtained
    in Step 1 and the user will get a PUSH notification.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文