php pushwoosh
1.9.0
一个 PHP 库,可使用 Pushwoosh REST Web 服务轻松发送推送通知。
// Create a Pushwoosh client
$ pushwoosh = Pushwoosh:: create ()
-> setApplication ( ' XXXX-XXX ' )
-> setAuth ( ' xxxxxxxx ' );
// Create a request for the '/createMessage' Web Service
$ request = CreateMessageRequest:: create ()
-> addNotification (Notification:: create ()-> setContent ( ' Hello Jean ! ' ));
// Call the REST Web Service
$ response = $ pushwoosh -> createMessage ( $ request );
// Check if its ok
if ( $ response -> isOk ()) {
print ' Great, my message has been sent ! ' ;
} else {
print ' Oups, the sent failed :-( ' ;
print ' Status code : ' . $ response -> getStatusCode ();
print ' Status message : ' . $ response -> getStatusMessage ();
}
很容易,不是吗?
如果您已将 php-pushwoosh 集成到流行的 PHP 框架中,请告诉我们!
在 Gomoob,我们每天使用出色的开源框架构建高质量的软件。您想与我们一起开始您的下一个项目吗?那太棒了!给我们打电话或给我们发送电子邮件,我们会尽快回复您!
您可以通过电子邮件 [email protected] 或电话号码 (+33) 6 85 12 81 26 或 (+33) 6 28 35 04 49 与我们联系。
另请访问 http://gomoob.github.io 以发现我们开发的更多开源软件。