LoginSignup
5

More than 5 years have passed since last update.

Parse から Growth Push への移行方法

Last updated at Posted at 2016-02-01

Screen Shot 2016-02-01 at 11.07.31.png

Parse が 2017年の1月28日にサービスが終了することでこれまで Parse でプッシュ通知を送ってた人が次にどの通知サービスを使えばいいか悩んでいると思います。そこでプッシュ通知サービスである Growth Push への移行方法について説明します。
1. parse-migration-tool をインストール:

$ npm i -g parse-migration-tool

2. credential.json を作成:

{
  "parse": {
    "applicationId": "<application id>",
    "masterKey": "<master key>"
  }
}

3. ios.csvandroid.csv を書き出す

$ parse migrate credential.json -s growthpush
ios.csv android.csv

4. Growth Push アカウント作成

Screen Shot 2016-02-01 at 13.37.05.png

5. デバイストークンインポート

デバイス画面で各プラットフォームと環境ごとにデバイスのインポートしてください:

Screen Shot 2016-02-01 at 13.38.00.png

これでデバイストークンのインポートは完了です :tada: インポートの際にしようした parse-migration-tool は GitHub で公開しているので何かバグがあれば issue を作っていただけると幸いです。

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
5