次の2つの問題があります。
最初の問題:
同じデバイスを使用している 2 人の顧客を登録する必要があるため、2 人の顧客は同じ登録 ID を持っています。
サーバー側からこれらの顧客の両方にオファーを送信すると、表示される通知はログインしている顧客によって異なります。
例 (画像を参照):
私のアプリケーションには、顧客ログインフォームがあります。このフォームでは、ユーザーがgnanavel
ログインした場合、アプリは他のオファーではなく、彼のオファーのみを受信する必要があります。
同様に、ユーザーがjeya
ログインした場合、アプリは他のユーザーのオファーではなく、そのユーザーのオファーのみを受信する必要があります。
現在、アプリは両方のオファーを受け取っています。
編集:
データベースにログイン ステータス フィールドを作成しました。顧客がデバイスにログインした場合、自分のオファーの通知だけを受け取ったことを意味します。他のオファーを取得できませんでした。うまく機能しています。
オファーボタンをクリックしながら条件を確認しました:
$getregid = mysqli_query($con,"select * from pim_customers where customer_id='$customer_id' and gcm_regid='$regId' and loginstatus='Y'");
これらの状態は、最初の問題が解決したことを意味すると書きましたが、別の問題が発生しました。
もう一つの問題は、
管理者が何らかのオファーを入力すると、顧客はログインしているときにのみデバイスで通知を受信する必要があります。それ以外の場合、通知は受信されません。この部分はうまく機能しています。
問題は、顧客が長時間ログアウトしていて、その間に管理者がさらにオファーを入力したことです。
顧客が 2 日後にアプリにログインすると、保留中のメッセージがすべて受信されます。保留中のメッセージを取得するにはどうすればよいですか?
管理者側は、顧客がログアウトしたときにデータベースでログインステータスが「N」であることを意味するオファーを入力します。これらの条件を実行して通知を受け取るにはどうすればよいですか。
$getregid = mysqli_query($con,"select * from pim_customers where customer_id='$customer_id' and gcm_regid='$regId' and loginstatus='Y'");
これは、オファーボタンをクリックしたときに実行されるサーバー側のコードです。
if (isset($_GET["regId"]) && isset($_GET["customer_id"]) && isset($_GET["message"])) {
$regId = $_GET["regId"];
$message = $_GET["message"];
$customer_id = $_GET["customer_id"];
include_once './GCM.php';
$getregid = mysqli_query($con,"select * from pim_customers where customer_id='$customer_id' and gcm_regid='$regId' and loginstatus='Y'");
$count1=mysqli_num_rows($getregid);
while($row = mysqli_fetch_array($getregid))
{
$id=$row['customer_id'];
}
if (mysqli_num_rows($getregid) > 0) {
$query = mysqli_query($con,"select count(offer) as count from pim_productdeal where customer_id='$id' and offer!=''");
$count = mysqli_fetch_array($query);
$msg = $count['count'];
$gcm = new GCM();
$registatoin_ids = array($regId);
$message = array("price" => $msg." "."The offers received");
$result = $gcm->send_notification($registatoin_ids, $customer_id, $message);
echo $result;
}
}
これは私のAndroid側のコードです:
public class GCMIntentService extends GCMBaseIntentService {
private static final String TAG = "GCMIntentService";
String regId;
public GCMIntentService() {
super(SENDER_ID);
}
@Override
protected void onRegistered(Context context, String registrationId) {
ServerUtilities.register(context, RegisterActivity.first_name, RegisterActivity.last_name, RegisterActivity.email, RegisterActivity.password, registrationId);
}
@Override
protected void onUnregistered(Context context, String registrationId) {
Log.i(TAG, "Device unregistered");
displayMessage(context, getString(R.string.gcm_unregistered));
ServerUtilities.unregister(context, registrationId);
}
@Override
protected void onMessage(Context context, Intent intent) {
Log.i(TAG, "Received message");
GCMRegistrar.checkDevice(this);
GCMRegistrar.checkManifest(this);
regId = GCMRegistrar.getRegistrationId(this);
String message = intent.getExtras().getString("price");
displayMessage(context, message);
if(Constants.response != null) {
generateNotification(context,message);
}
}
@Override
protected void onDeletedMessages(Context context, int total) {
Log.i(TAG, "Received deleted messages notification");
String message = getString(R.string.gcm_deleted, total);
displayMessage(context, message);
// notifies user
generateNotification(context,message);
}
@Override
public void onError(Context context, String errorId) {
Log.i(TAG, "Received error: " + errorId);
displayMessage(context, getString(R.string.gcm_error, errorId));
}
@Override
protected boolean onRecoverableError(Context context, String errorId) {
// log message
Log.i(TAG, "Received recoverable error: " + errorId);
displayMessage(context, getString(R.string.gcm_recoverable_error,
errorId));
return super.onRecoverableError(context, errorId);
}
private static void generateNotification(Context context,String message) {
int icon = R.drawable.icon;
long when = System.currentTimeMillis();
NotificationManager notificationManager = (NotificationManager)
context.getSystemService(Context.NOTIFICATION_SERVICE);
Notification notification = new Notification(icon, message, when);
String title = context.getString(R.string.app_name);
Intent notificationIntent = new Intent(context, MyDealProducts.class);
notificationIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP |
Intent.FLAG_ACTIVITY_SINGLE_TOP);
PendingIntent intent =
PendingIntent.getActivity(context, 0, notificationIntent, 0);
notification.setLatestEventInfo(context, title, message, intent);
notification.flags |= Notification.FLAG_AUTO_CANCEL;
notification.defaults |= Notification.DEFAULT_SOUND;
notification.defaults |= Notification.DEFAULT_VIBRATE;
notificationManager.notify(0, notification);
}
}