2013-10-12 176 views
1

背景常見的存儲: 我正在使用jQuery,HTML5和PHP web應用程序,我已經使用的WebView到我的web應用程序鏈接爲Android應用程序創建的Android包裝應用。爲Web應用程序和Android應用

目的: 我想用推送通知,包裝應用,這樣我可以告訴目標用戶有關的更新或新聞。

問題: 我能夠使用名爲PARSE的第三方推送通知API獲取手機的deviceid /註冊ID,但我想將該deviceid/registrationid鏈接到我的Web應用程序的登錄用戶。

我的想法是將deviceid/registrationid保存在android的通用存儲中,當用戶登錄到我的webapp時,然後獲取該公共存儲的設備ID並保存在會話中以使用它來發送推送通知。

問題: 1.是否有反正我可以/ registrationid鏈接設備ID用戶的登錄? 2.是否有一個公共存儲(如localstorage)可以保存id,然後webapp可以從那裏抓取?

感謝您的幫助提前。

回答

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. 

希望你能明白我想說....

+0

感謝您的答覆。我的問題是,在註冊用戶後,在哪裏存儲registrationid/deviceid,以便我的webapp可以使用它。這是因爲webapp可以被任何用戶使用,並且我需要將登錄用戶與存儲在android上的deviceid/registrationid映射。我的webapp可以訪問android的本地數據庫嗎? – meh208

相關問題