オーロラプッシュ---JPush---サーバー端とandroid端はどうすればいいですか?
最近は配達機能が必要です.一人で申請します.メッセージはすぐに発表者に伝えます. オーロラを使いたいです.
バックグラウンドは thinkcmfオープンソースフレーム サードパーティプラグインの公式サイトでも、どうするかという話があります.http://www.thinkcmf.com/document/article/id/395.html
まずビジネスの話をします.
シンプルウィンド/Core/Library/Veendor thinkcmfでこのようなところを見つけて、第三者のカバンをこの下に置いてもいいです.
ここでは公式サイトで言っているようなやり方ではなく、こうです.
次はappicationの下にモジュールを作ります. しばらくはJPushにします
コントローラを書き込みます
サーバー側で書きました.次はandroid端末です.
クライアントはまずリストファイルです. オーロラで申請したデモの全部のcopyをあなたの今の工事の中に入れて、主な包装名は一致しますよ.
次にカスタムアプリのグローバル変数onCreate()にこのような2つを追加します.
//オーロラプッシュ JPush Interface.set Debug Mode(true) JPush Interface.init(this);
次はカバンを作るか、またはツールバッグの中に受信したツール類を書くことです.
次にポイントを押して送ります.ユーザー登録時や登録時にユーザーのニックネームを付けてください. (別名)オーロラの方に登録してください.
他にもいくつかの小さいところがあります.言わないでください.大体このままです.
バックグラウンドは thinkcmfオープンソースフレーム サードパーティプラグインの公式サイトでも、どうするかという話があります.http://www.thinkcmf.com/document/article/id/395.html
まずビジネスの話をします.
シンプルウィンド/Core/Library/Veendor thinkcmfでこのようなところを見つけて、第三者のカバンをこの下に置いてもいいです.
ここでは公式サイトで言っているようなやり方ではなく、こうです.
<?php
class pusher{
//
private $app_key = ' key';
//
private $master_secret = ' ';
//
private $url = 'https://api.jpush.cn/v3/push';
public function __construct($app_key,$master_secret,$url){
if($app_key) $this->app_key = $app_key;
if($master_secret) $this->master_secret = $master_secret;
if($url) $this->url = $url;
}
/*
*
* $receive = 'all' //
* $receive = array('tag'=>array());
* $receive = array('alias'=>array()); //
* $content = ''; //
* $m_type = 'http'; //
* $m_txt = ''; //
* $m_time = '86400';//
*/
public function send_pub($receive,$content,$m_type,$m_txt,$m_time){
$m_type = 'http';
$m_txt = '';
$m_time = '';
$message = '';
$result = $this->push($receive,$content,$m_type,$m_txt,$m_time);
if($result){
$res_arr = json_decode($result,true);
//echo $res_arr['error']['message'];
$message = ''; //
if(isset($res_arr['error'])){
$error_code = $res_arr['error']['code'];
switch($error_code){
case 200:
$message = ' ';
break;
case 1000:
$message = ' ';
break;
case 1001:
$message = ' GET ';
break;
case 1002:
$message = ' ';
break;
case 1003:
$message = ' ';
break;
case 1004:
$message = ' ';
break;
case 1005:
$message = ' ';
break;
case 1008:
$message = 'appkey ';
break;
case 1020:
$message = ' https';
break;
case 1030:
$message = ' ';
break;
default:
$message = ' ( )';
break;
}
}else{
$message = ' ';
}
}else{
$message = ' ';
}
echo "<script>alert(' :{$message}')</script>";
}
//
public function push($receiver = 'all',$content = '' , $m_type , $m_txt , $m_time){
$base64 = base64_encode("{$this->app_key}:{$this->master_secret}");
$header = array(
"Authorization:Basic $base64","Content-Type:application/json"
);
$data['platform'] = 'all';
$data['audience'] = $receiver;
$data['notification'] = array(
"alert"=>$content,
"android"=>array(
'alert'=>$content,
'title'=>'',
'builder_id'=>1,
'extras'=>array('type'=>$m_type,'txt'=>$m_txt)
),
"ios"=>array(
'alert'=>$content,
'badge'=>1,
'sound'=>'default',
'extras'=>array('type'=>$m_type,'txt'=>$m_txt)
)
);
$data['message'] = array(
'msg_content'=>$content,
'extras'=>array('type'=>$m_type,'txt'=>$m_txt)
);
$data['option'] = array(
'sendno'=>time(),
'time_to_live'=>$m_time,
'apns_production'=>fals, //
);
$param = json_encode($data);
$res = $this->push_curl($param,$header);
if($res){
return $res;
}else{
return false;
}
}
// curl
public function push_curl($param = '',$header = ''){
if(empty($param)) return false;
$postUrl = $this->url;
$curlPost = $param;
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL ,$postUrl);
curl_setopt($ch, CURLOPT_HEADER , 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POST , 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $curlPost );
curl_setopt($ch, CURLOPT_HTTPHEADER , $header);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
$data = curl_exec($ch);
curl_close($ch);
return $data;
}
}
このファイルをVendorの下に置いてください.他のものは管理しなくてもいいです.次はappicationの下にモジュールを作ります. しばらくはJPushにします
コントローラを書き込みます
<?php
namespace JPusher\Controller;
use Common\Controller\HomeBaseController;
class JPusherController extends HomeBaseController{
public function push(){
vendor('pusher');
$pusher = new \pusher();
$a = array(
'id'=>12,
'msg'=>'hello world',
'name'=>' '
);
$pusher->send_pub('all', json_encode($a), 'http', 'http://www.baidu.com', '12000');
}
}
テストの時はラジオで送ります. そのallを変更してもいいです. (通信する) ;alaisの別名プッシュなどに変更しました.サーバー側で書きました.次はandroid端末です.
クライアントはまずリストファイルです. オーロラで申請したデモの全部のcopyをあなたの今の工事の中に入れて、主な包装名は一致しますよ.
次にカスタムアプリのグローバル変数onCreate()にこのような2つを追加します.
//オーロラプッシュ JPush Interface.set Debug Mode(true) JPush Interface.init(this);
次はカバンを作るか、またはツールバッグの中に受信したツール類を書くことです.
import org.json.JSONException;
import org.json.JSONObject;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.util.Log;
import cn.jpush.android.api.JPushInterface;
/**
*
*
* Receiver, :
* 1)
* 2)
*/
public class MyReceiver extends BroadcastReceiver {
private static final String TAG = "JPush";
@Override
public void onReceive(Context context, Intent intent) {
Bundle bundle = intent.getExtras();
Log.d(TAG, "[MyReceiver] onReceive - " + intent.getAction() + ", extras: " + printBundle(bundle));
if (JPushInterface.ACTION_REGISTRATION_ID.equals(intent.getAction())) {
String regId = bundle.getString(JPushInterface.EXTRA_REGISTRATION_ID);
Log.d(TAG, "[MyReceiver] Registration Id : " + regId);
//send the Registration Id to your server...
} else if (JPushInterface.ACTION_MESSAGE_RECEIVED.equals(intent.getAction())) {
Log.d(TAG, "[MyReceiver] : " + bundle.getString(JPushInterface.EXTRA_MESSAGE));
processCustomMessage(context, bundle);
} else if (JPushInterface.ACTION_NOTIFICATION_RECEIVED.equals(intent.getAction())) {
Log.d(TAG, "[MyReceiver] ");
int notifactionId = bundle.getInt(JPushInterface.EXTRA_NOTIFICATION_ID);
Log.d(TAG, "[MyReceiver] ID: " + notifactionId);
} else if (JPushInterface.ACTION_NOTIFICATION_OPENED.equals(intent.getAction())) {
Log.d(TAG, "[MyReceiver] ");
// Activity
Intent i = new Intent(context, TestActivity.class);
i.putExtras(bundle);
//i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TOP );
context.startActivity(i);
} else if (JPushInterface.ACTION_RICHPUSH_CALLBACK.equals(intent.getAction())) {
Log.d(TAG, "[MyReceiver] RICH PUSH CALLBACK: " + bundle.getString(JPushInterface.EXTRA_EXTRA));
// JPushInterface.EXTRA_EXTRA , Activity, ..
} else if(JPushInterface.ACTION_CONNECTION_CHANGE.equals(intent.getAction())) {
boolean connected = intent.getBooleanExtra(JPushInterface.EXTRA_CONNECTION_CHANGE, false);
Log.w(TAG, "[MyReceiver]" + intent.getAction() +" connected state change to "+connected);
} else {
Log.d(TAG, "[MyReceiver] Unhandled intent - " + intent.getAction());
}
}
// intent extra
private static String printBundle(Bundle bundle) {
StringBuilder sb = new StringBuilder();
for (String key : bundle.keySet()) {
if (key.equals(JPushInterface.EXTRA_NOTIFICATION_ID)) {
sb.append("
key:" + key + ", value:" + bundle.getInt(key));
}else if(key.equals(JPushInterface.EXTRA_CONNECTION_CHANGE)){
sb.append("
key:" + key + ", value:" + bundle.getBoolean(key));
}
else {
sb.append("
key:" + key + ", value:" + bundle.getString(key));
}
}
return sb.toString();
}
//send msg to MainActivity
private void processCustomMessage(Context context, Bundle bundle) {
if (MainActivity.isForeground) {
String message = bundle.getString(JPushInterface.EXTRA_MESSAGE);
String extras = bundle.getString(JPushInterface.EXTRA_EXTRA);
Intent msgIntent = new Intent(MainActivity.MESSAGE_RECEIVED_ACTION);
msgIntent.putExtra(MainActivity.KEY_MESSAGE, message);
if (!ExampleUtil.isEmpty(extras)) {
try {
JSONObject extraJson = new JSONObject(extras);
if (null != extraJson && extraJson.length() > 0) {
msgIntent.putExtra(MainActivity.KEY_EXTRAS, extras);
}
} catch (JSONException e) {
}
}
context.sendBroadcast(msgIntent);
}
}
}
この中はあなたが自分で何が欲しいかを保留します.これは公式サイトからのデモです. 次にポイントを押して送ります.ユーザー登録時や登録時にユーザーのニックネームを付けてください. (別名)オーロラの方に登録してください.
// jpush
private void initJpush()
{
new Thread(new Runnable() {
@Override
public void run() {
// TODO Auto-generated method stub
JPushInterface.setAliasAndTags(getApplicationContext(), uid, null, mTagAliasCallback);
}
}).start();
}
//
private final TagAliasCallback mTagAliasCallback = new TagAliasCallback() {
@Override
public void gotResult(int arg0, String arg1, Set<String> arg2)
{
// TODO Auto-generated method stub
switch(arg0)
{
case 0:
cacheFunction.upDateCache(Constants.INIT_JPUSH, "1");
handler.sendEmptyMessage(INIT_JPUSH);
break;
default:
handler.sendEmptyMessage(INIT_JPUSH_FAILURE);
break;
}
}
};
このコードは登録またはログインの中に入れられています.登録が成功したら、サーバーがステータスコードに戻り、判断したらinitJpushを呼び出してもいいです.他にもいくつかの小さいところがあります.言わないでください.大体このままです.