gpt4 book ai didi

asp.net-mvc-4 - 如何在 windows azure 上向 i-pad 推送通知

转载 作者:行者123 更新时间:2023-12-04 08:46:35 27 4
gpt4 key购买 nike

我有一个 MVC Web API 项目,我需要向 iPad 发送推送通知。我为此使用了 .cer 和 .p12 文件,它工作正常。现在我需要将它发布到 azure 服务器,但我是 azure 的新手,不知道在哪里存储以及如何访问证书。

我尝试将证书上传到云服务,但无法访问它。

我正在使用以下代码:

string strDeviceToken = "abcd";
string strPushMessage = "hello";
var payload1 = new NotificationPayload(strDeviceToken, strPushMessage, 1, "default");
payload1.AddCustom("RegionID", "IDQ10150");
var p = new List<NotificationPayload> { payload1 };
var push = new PushNotification(true, certificatePath, "password");
string strfilename = push.P12File;
var message1 = push.SendToApple(p);

最佳答案

嗨,我正在使用此代码及其工作
http://www.c-sharpcorner.com/UploadFile/pandeypradip/apple-push-notification-using-Asp-Net/
Attech Dll 上面的链接

  • 字符串 strDeviceToken ="xyz"
  • 字符串 strPushMessage="测试"
  • payload1.AddCustom("RegionID", "IDQ10150");
  • var p = 新列表 { payload1 };
  • string certificatePath = System.Web.HttpContext.Current.Server.MapPath("~/App_Data/certificates/xyz.p12");
  • var push = new PushNotification(true, certificatePath, "password");
  • 字符串 strfilename = push.P12File;
  • var message1 = push.SendToApple(p);
  • 关于asp.net-mvc-4 - 如何在 windows azure 上向 i-pad 推送通知,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23404614/

    27 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com