定制 nfilin/apns-http2 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

nfilin/apns-http2

最新稳定版本:v1.0.1

Composer 安装命令:

composer require nfilin/apns-http2

包简介

README 文档

README

Requires Curl with HTTP2 and SSL support.

Usage example:

<?php
    use Nfilin\Libs\ApnsHttp2 as Apns;

    /* Create APNS certificate */
    $certificate = new Apns\Certificate('/path/to/certificate', 'pass_phrase');

    /* Create connection */
    $connection = new Apns\Connection($certificate, [ 'sandbox' => false  ]);

    /* Create payload */
    $payload = new Apns\Payload();
    $payload->title = 'Alert title';
    $payload->custom_data['some_custom_data_key'] = 'some data';
    $payload->badge = 1;

    /* Wrap list of receivers to recognizable format */
    $receivers = new Apns\DeviceList(
                [
                    'notification_id_of_first_receiver',
                    'notification_id_of_second_receiver',
                    //...
                ]
            );

    /* Create message for seklected receivers and payload */
    $message = new Apns\Message($receivers, $payload);

    /* Sign message with topic valid for selected receivers */
    $message->topic = 'some.example.app';

    /* Set expire time in seconds from current time */
    $message->time_to_live = 3600; // One hour after been sent

    /* Send notifications and get responses */
    $response = $connection->send($message);

统计信息

  • 总下载量: 1.15k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 14
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 14
  • Watchers: 5
  • Forks: 9
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2016-03-16