美文网首页
noodlewerk/NWPusher解决socket链接失败

noodlewerk/NWPusher解决socket链接失败

作者: 超哥__ | 来源:发表于2022-03-31 15:29 被阅读0次

    最近在研究APNS, 找到这个项目https://github.com/noodlewerk/NWPusher.git
    发现是8年前开发的了, 试了下不能用, 下载代码稍作修改即可

    // NSSecTools.m
    + (NSString *)prefixWithCertType:(NWCertType)type
    // 这一行,笔者测试环境APNS证书前缀已经不是“Apple Development IOS Push Services”
    case kNWCertTypeIOSDevelopment: return @"Apple Sandbox Push Services: ";
    
    // NWPusher.m
    // apns服务器已经发生变化,这里端口和服务器都改一下
    static NSString * const NWSandboxPushHost = @"api.sandbox.push.apple.com";
    static NSString * const NWPushHost = @"api.push.apple.com";
    static NSUInteger const NWPushPort = 2197;
    

    此后便可以正常使用了

    相关文章

      网友评论

          本文标题:noodlewerk/NWPusher解决socket链接失败

          本文链接:https://www.haomeiwen.com/subject/jhrnjrtx.html