LoginSignup
1
2

More than 5 years have passed since last update.

PerlとGCMでAndroidへPush通知

Last updated at Posted at 2016-05-24

tl;dr

JSONペイロードにタイトル・メッセージボディを詰めて、Android端末へPush通知したいときのメモ。

Snippets

  • メッセージボディのみの場合
    my $gcm = WWW::Google::Cloud::Messaging->new(
        'api_key' => $args->{api_key}
    );
    my $res = $gcm->send(
        {   registration_ids => $args->{reg_id},
            collapse_key     => $collapse_key,
            data             => {
                message =>
                    'hogehoge',
                score     => 12345,
                is_update => JSON::true,
            },
        }
    );
  • タイトルとメッセージボディの場合
    my $gcm = WWW::Google::Cloud::Messaging->new(
        'api_key' => $args->{api_key}
    );
    my $res = $gcm->send(
        {   registration_ids => $args->{reg_id},
            collapse_key     => $collapse_key,
            notification => { "title" => "hoge", "body" => "fuga" },
        }
    );

※注
api_keyは文字列
registration_idsは配列のリファレンス

Library

WWW::Google::Cloud::Messaging
http://search.cpan.org/~xaicron/WWW-Google-Cloud-Messaging-0.06/lib/WWW/Google/Cloud/Messaging.pm#build_request(\%payload)

1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2