abgit/onesignal 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

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

abgit/onesignal

最新稳定版本:0.0.2

Composer 安装命令:

composer require abgit/onesignal

包简介

A simple onesignal php wrapper

README 文档

README

A simple onesignal php wrapper

send a push notification

$onesignal = new abgit\onesignal( 'app_id', 'app_key' );

$notification = [
            'headings' => [
                'en' => 'Title'
            ],
            'contents' => [
                'en' => 'Notification message'
            ],
            'subtitle' => [
                'en' => 'subtitle'
            ],
            'channel_for_external_user_ids' => 'push',
            'include_external_user_ids' => ['xpto-12345-6780'],
            'data' => ['foo' => 'bar']
        ];

if( $onesignal->send( $result, $notification ){
   // ... do something with $result
}

send an email

$onesignal = new abgit\onesignal( 'app_id', 'app_key' );

$notification = [
            'email_subject' => 'hello',
            'template_id' => '77ca0b25-13b8-....',
            'channel_for_external_user_ids' => 'email',
            'include_external_user_ids' => ['xpto-12345-6780']
        ];

if( $onesignal->send( $result, $notification ){
   // ... do something with $result
}

统计信息

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

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: Unknown
  • 更新时间: 2025-03-21