C# dotAPNS 推送通知停止服务器上的工作,需要重新启动服务器才能使其正常工作
Posted
技术标签:
【中文标题】C# dotAPNS 推送通知停止服务器上的工作,需要重新启动服务器才能使其正常工作【英文标题】:C# dotAPNS push notification stops work on server and need to restart server to make it working 【发布时间】:2021-11-30 03:55:09 【问题描述】:我尝试使用此代码在 ios 中发送推送通知,它可以工作但仅持续一段时间,然后它没有从 var response = apns.SendAsync(push).Result;
响应,如果我需要再次发送推送通知,那么我需要重新启动服务器然后它正在重新开始工作,但只是持续一段时间。
我正在使用 dotAPNS v4.0.30319 NuGet 包发送推送通知。 我正在使用亚马逊服务器。
为了更清楚,我在这里添加了一个代码示例。
public bool SendIOSNotification(Dictionary<string, Dictionary<string, string>> iosDictionary, ILog log = null)
string p8File= HttpContext.Current.Server.MapPath("*******");
var options = new ApnsJwtOptions()
BundleId = "*****",
CertFilePath = p8File, // use either CertContent or CertFilePath, not both
KeyId = "******",
TeamId = "*****"
;
var apns = ApnsClient.CreateUsingJwt(new HttpClient(new WinHttpHandler()), options);
var push = new ApplePush(ApplePushType.Alert)
.AddBadge(1)
.AddSound("sound.caf");
foreach (var itemKey in iosDictionary)
_log.DebugFormat("========== IOS ==========");
_log.DebugFormat("Device Item 0", itemKey);
string payLoadCatgory = string.Empty;
push.AddCustomProperty("content-available", "1", true)
.AddToken(itemKey.Key.ToString());
foreach (var itemValue in itemKey.Value)
try
if (!itemValue.Key.ToLower().Contains("id"))
push.AddCustomProperty(itemValue.Key, itemValue.Value, true);
else
push.AddCustomProperty(itemValue.Key, Convert.ToInt64(itemValue.Value), true);
if (itemValue.Key.ToLower().Contains("category"))
payLoadCatgory = itemValue.Value;
catch (Exception ex)
log.Error(string.Format("Error in send Notification to IOS :: DeviceToken is 0", itemKey.Key));
try
_log.Debug("Start send notification");
var response = apns.SendAsync(push).Result;
_log.Debug("Sent notification");
if (response.IsSuccessful)
log.Info(string.Format("An alert push has been successfully sent!"));
return true;
else
switch (response.Reason)
case ApnsResponseReason.BadCertificateEnvironment:
break;
default:
throw new ArgumentOutOfRangeException(nameof(response.Reason), response.Reason, null);
log.Error(string.Format("Failed to send a push, APNs reported an error: " + response.ReasonString));
catch (TaskCanceledException)
log.Error(string.Format("Failed to send a push: HTTP request timed out."));
catch (HttpRequestException ex)
log.Error(string.Format("Failed to send a push. HTTP request failed: " + ex));
catch (Exception ex)
log.Error(string.Format("Failed to send a push. HTTP request failed: " + ex));
return false;
return false;
【问题讨论】:
【参考方案1】:您正在为每次发送的推送创建一个新的ApnsClient
实例。因此,每个ApnsClient
在与 APN 建立连接时都会生成自己的 JWT 令牌。严禁每 20 分钟创建一次以上的新 JWT 令牌,请参阅 the official docs (scroll till the very last section)。
摘录如下:
为了安全起见,APN 要求您定期刷新令牌。每 20 分钟刷新一次令牌,每 60 分钟刷新一次。 APNs 拒绝其令牌包含超过一小时的时间戳的任何请求。同样,如果您每 20 分钟多次重新创建令牌,APNs 会报告错误。 在您的提供商服务器上,设置一个重复任务以使用当前时间戳重新创建您的令牌。再次加密令牌并将其附加到后续通知请求中。
要解决您的问题,您需要重用您的 ApnsClient
实例。一种方法是使 ApnsClient
成为单例。
【讨论】:
以上是关于C# dotAPNS 推送通知停止服务器上的工作,需要重新启动服务器才能使其正常工作的主要内容,如果未能解决你的问题,请参考以下文章