php pushwoosh
1.9.0
Pushwoosh REST Web サービスを使用してプッシュ通知を簡単に送信するための PHP ライブラリ。
// 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 にもアクセスしてください。