Android GCM提供Null消息

时间:2014-12-17 07:10:54

标签: android google-cloud-messaging

大家好我在我的应用中使用Google云消息。我正在关注我的app.link教程的android hive教程,如下所示。

http://www.androidhive.info/2012/10/android-push-notifications-using-google-cloud-messaging-gcm-php-and-mysql/

一切对我来说都很好,但问题是当从远程服务器发送消息时,在客户端我收到消息警报但没有消息只写了空消息。我收到空消息。我该如何解决?

消息接收上的Java代码

/ **      *呼叫方法接收新消息      * * /

  @Override
  protected void onMessage(Context context, Intent intent) {
    Log.i(TAG, "Received message");
    String message = intent.getExtras().getString("price");

    displayMessage(context, message);
    // notifies user
    generateNotification(context, message);
}

服务器端代码

//put your code here
// constructor
function __construct() {

}


/**
 * Sending Push Notification
 */
public function send_notification($registatoin_ids, $message) {
    // include config
    include_once($_SERVER["DOCUMENT_ROOT"] ."*****");

    $apiKey = "*******";
    // Set POST variables
    $url = 'https://android.googleapis.com/gcm/send';

    $fields = array(
        'registration_ids' => $registatoin_ids,
        'data' => $message,
    );

    $headers = array(
            'Authorization: key=' . $apiKey,
            'Content-Type: application/json'
    );

    // Open connection
    $ch = curl_init();

    // Set the url, number of POST vars, POST data
    curl_setopt($ch, CURLOPT_URL, $url);

    curl_setopt($ch, CURLOPT_POST, true);
    curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

    // Disabling SSL Certificate support temporarly
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);

    curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($fields));

    // Execute post
    $result = curl_exec($ch);
   // if ($result == FALSE) {
   //     die('Curl failed: ' . curl_error($ch));
   // }

    // Close connection
    curl_close($ch);
    echo $result;
}

}

消息数组

   $message = array("message" => $message);

先谢谢。

2 个答案:

答案 0 :(得分:0)

猜测一下,确保从服务器发送的key与您在客户端使用的相同。在本教程中,它是price。所以要确保两者相同。

服务器端: $message = array("price" => $message);

<强>机器人:

@Override
    protected void onMessage(Context context, Intent intent) {
        Log.i(TAG, "Received message");
        String message = intent.getExtras().getString("price");

        displayMessage(context, message);
        // notifies user
        generateNotification(context, message);
    }

答案 1 :(得分:0)

如果您要从服务器发送“message”参数:

$message = array("message" => $message);

您应该从以下位置更改客户端代码:

String message = intent.getExtras().getString("price");

到:

String message = intent.getExtras().getString("message");

这样客户端代码就会读取您从服务器发送给它的参数。