abgit/onesignal
该包最新版本(0.0.2)没有可用的许可证信息。
简单的onesignal php包装器
0.0.2
2019-09-12 21:43 UTC
Requires
- ext-json: *
- rmccue/requests: 1.*
This package is auto-updated.
Last update: 2024-09-13 08:38:04 UTC
README
简单的onesignal php包装器
发送推送通知
$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 }
发送电子邮件
$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 }