使用 php 发送 Windows Phone 7 的推送通知
我是一名网络开发人员(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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
以下是向 URL“_URL_TO_SEND_TO_”发送 Toast 通知的 PHP 代码,该 URL 是从 MPNS 收到的令牌:
如果这是您需要的代码,请检查此答案。
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:
If this is the code you need, please check this answer.
您不需要在 .NET 中实现它。您只需将正确的 XML 负载发送到手机给出的 URL 即可。
查看这篇关于在Windows Phone 7。
基本步骤是:
电话)。
.NET,无论你喜欢什么)。
在步骤 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:
the phone).
.NET, whatever you like).
in Step 1 and the user will get a PUSH notification.
尝试这个现成的解决方案 http://phpwindowsphonepush.codeplex.com/SourceControl/changeset/view /18482#58320。很容易。
Try this ready solution http://phpwindowsphonepush.codeplex.com/SourceControl/changeset/view/18482#58320. Very easy.