配置以下基本功能,如果還未能接受到推送,可前往極光社群尋求答案
jpush_channel: "developer-default", //暫時填寫預設值即可.
]// ---------------- 極光推送配置 end ---------------------------
}...
}dependencies
manifest檔案:
android:name="你自定義的receiver"
android:enabled="true">
android:name="cn.jpush.android.intent.registration" />
android:name="cn.jpush.android.intent.message_received" />
android:name="cn.jpush.android.intent.notification_received" />
android:name="cn.jpush.android.intent.notification_opened" />
android:name="cn.jpush.android.intent.action_richpush_callback" />
android:name="cn.jpush.android.intent.connection" />
android:name="您的包名" />
intent-filter>
receiver>
需要自定義乙個receiver
public class jpushreceiver extends broadcastreceiver else
if (jpushinte***ce.action_message_received.
equals(intent.getaction())) else
if (jpushinte***ce.action_notification_received.
equals(intent.getaction())) else
if (jpushinte***ce.action_notification_opened.
equals(intent.getaction())) else
if (jpushinte***ce.action_richpush_callback.
equals(intent.getaction())) else
if (jpushinte***ce.action_connection_change.
equals(intent.getaction())) else }}
每乙個手機唯一的極光id(傳給後台):
jpushinte***ce.getregistrationid(this)
/** 極光初始化 */
jpushinte***ce.setdebugmode(true); // 設定開啟日誌,發布時請關閉日誌
jpushinte***ce.init(this); // 初始化 jpush
好了,到這裡您就完成了最簡易的極光推送整合,如果需要更多推送功能您可以去官網api檢視,如果有任何關於極光推送的問題均可去極光社群提問,也許社群首頁就有專案中bug的解決方法。 極光推送與極光IM
最近接了極光的推送和im,贊一下極光,他們的客服挺好的。極光推送會幫我們在後台推送和聊天,我們只需要按照他們文件呼叫他們的api。推送可以推送所有人,按別名,按組名,按極光regid來推送。所有人推送 catch apiconnectionexception e catch apirequestex...
極光推送Jpush
這幾天研究極光推送,發現挺好玩的 乙個jpush極光推送遠端呼叫api簡單的例項,php伺服器,貼上 文件參考 send.php include jpush.php n title 極光推送title n content 極光推送message mastersecret xx sendno 1234...
ios極光推送
ios 極光推送整合 分類 ios開發筆記 2014 11 20 13 49 2324人閱讀收藏 舉報jpush 極光推送 jpushdemo 極光推送整合 jpush整合 稍稍研究了一下極光推送,其實是非常簡單的,不過這個過程也出現了一些問題。對於應用在前台時,需要額外處理一下。關於極光推送,由於...