1

背景: Jquery、HTML5、および PHP を使用して webapp に取り組んでおり、webview を使用して Android Wrapper アプリケーションを作成し、webapp を Android アプリとしてリンクしています。

目的: ラッパー アプリケーションにプッシュ通知を使用して、ターゲット ユーザーに更新やニュースを通知できるようにしたいと考えています。

問題: PARSE と呼ばれるサードパーティのプッシュ通知 API を使用して電話の deviceid/registration id を取得できますが、その deviceid/registrationid を Web アプリケーションのログイン ユーザーにリンクしたいと考えています。

私のアイデアは、android の共通ストレージに deviceid/registrationid を保存し、ユーザーが webapp にログインすると、その共通ストレージのデバイス ID を取得し、セッションに保存してプッシュ通知の送信に使用することでした。

質問: 1. deviceid/registrationid をユーザー ログインにリンクする方法はありますか? 2. ID を保存して webapp がそこから取得できる共通ストレージ (localstorage など) はありますか?

事前にご協力いただきありがとうございます。

4

1 に答える 1

0

私の理解によると、デバイスのIDとしてユーザーの認証を使用してバックエンドデータベースにアクセスしたいと考えています。

         If so then you can achieve it as " Initially when you are 
  calling push notification function and register device for 
  push notification service at that time you casn store that 
  device id in your local database also as user id.


       So whenever user will start your application and 
  it will register device for push notification you just 
  need to check weather that device id is available or 
  not (As if user re install app) and insert in database.

私の言いたいことを理解していただけると幸いです....

于 2013-10-12T10:51:25.603 に答える