通过GCM在Android应用中推送通知

时间:2016-01-02 06:30:56

标签: php android push-notification google-cloud-messaging

我是Android应用开发的新手。现在我正在开发一个简单的应用程序,用户可以通过PHP脚本将数据上传到MySQL服务器。我成功地做到了。但是我希望每当用户从他的应用程序向服务器上传一些数据时,所有其他应用程序用户都应该收到通知(即xyz用户添加了一个新帖子。)。

我找到了使用Google Cloud Messaging实现这一目标的方法。但是我无法在我的应用程序中实现它。

我已使用以下PHP脚本通过Web服务器上的PHP脚本成功实现了Web消息中的GCM通知。

<?php
//Generic php function to send GCM push notification
function sendMessageThroughGCM($registatoin_ids, $message) {
    //Google cloud messaging GCM-API url
    $url = 'https://android.googleapis.com/gcm/send';
    $fields = array(
        'registration_ids' => $registatoin_ids,
        'data' => $message,
    );
    // Update your Google Cloud Messaging API Key
    define("GOOGLE_API_KEY", "AIzaSyCVQRSnEoulXoG21uKua1DTrOUvMkxbK-U");        
    $headers = array(
        'Authorization: key=' . GOOGLE_API_KEY,
        'Content-Type: application/json'
    );
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_POST, true);
    curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    curl_setopt ($ch, CURLOPT_SSL_VERIFYHOST, 0);   
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
    curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($fields));
    $result = curl_exec($ch);               
    if ($result === FALSE) {
        die('Curl failed: ' . curl_error($ch));
    }
    curl_close($ch);
    return $result;
}
?>
<?php

//Post message to GCM when submitted
$pushStatus = "GCM Status Message will appear here";    
if(!empty($_GET["push"])) { 
    $gcmRegID  = file_get_contents("GCMRegId.txt");
    $pushMessage = $_POST["message"];   
    if (isset($gcmRegID) && isset($pushMessage)) {      
        $gcmRegIds = array($gcmRegID);
        $message = array("m" => $pushMessage);  
        $pushStatus = sendMessageThroughGCM($gcmRegIds, $message);
    }       
}

//Get Reg ID sent from Android App and store it in text file
if(!empty($_GET["shareRegId"])) {
    $gcmRegID  = $_POST["regId"]; 
    file_put_contents("GCMRegId.txt",$gcmRegID);
    echo "Done!";
    exit;
}   
?>
<html>
<head>
    <title>Google Cloud Messaging (GCM) in PHP</title>
    <style>
        div#formdiv, p#status{
        text-align: center;
        background-color: #FFFFCC;
        border: 2px solid #FFCC00;
        padding: 10px;
        }
        textarea{
        border: 2px solid #FFCC00;
        margin-bottom: 10px;            
        text-align: center;
        padding: 10px;
        font-size: 25px;
        font-weight: bold;
        }
        input{
        background-color: #FFCC00;
        border: 5px solid #fff;
        padding: 10px;
        cursor: pointer;
        color: #fff;
        font-weight: bold;
        }

    </style>
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
    <script>
    $(function(){
        $("textarea").val("");
    });
    function checkTextAreaLen(){
        var msgLength = $.trim($("textarea").val()).length;
        if(msgLength == 0){
            alert("Please enter message before hitting submit button");
            return false;
        }else{
            return true;
        }
    }
    </script>
</head>
<body>
    <div id="formdiv">
    <h1>Google Cloud Messaging (GCM) in PHP</h1>    
    <form method="post" action="/swach/gcm/gcm.php/?push=true" onsubmit="return checkTextAreaLen()">                                                                          
            <textarea rows="5" name="message" cols="45" placeholder="Message to send via GCM"></textarea> <br/>
            <input type="submit"  value="Send Push Notification through GCM" />
    </form>
    </div>
    <p id="status">
    <?php echo $pushStatus; ?>
    </p>        
</body>
</html>

并在我的设备上成功收到通知。

但是我想设置该应用程序应该自动通知GCM发送消息而不是使用WEB脚本。 并且应该向所有其他应用用户收到通知。

我也经历过GCM DownStream和UpStream消息传递,但是没有太多了解,无法成功实现。

我尝试使用以下代码设置下游,但我没有收到通知到我的应用

public class AddNewMessage extends Activity{
private Integer msgId;
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_add_new_message);

    msgId = 1;

}
// OnClick Action to the button inside the Activity Layout
public void sendNewMessage(View view) {
    final GoogleCloudMessaging gcm = GoogleCloudMessaging.getInstance(this);
    if (view == findViewById(R.id.send_message)) {
        new AsyncTask<Void,Void,String>() {


            @Override
            protected String doInBackground(Void... params) {
                String msg = "";
                try {
                    Bundle data = new Bundle();
                    data.putString("my_message", "Hello World");
                    data.putString("my_action","SAY_HELLO");
                    String id = Integer.toString(msgId);
                    gcm.send(ApplicationConstants.GOOGLE_PROJ_ID + "@gcm.googleapis.com", id, data);
                    msg = "Sent message";
                } catch (IOException ex) {
                    msg = "Error :" + ex.getMessage();
                }
                return msg;
            }

            @Override
            protected void onPostExecute(String msg) {
                Toast.makeText(AddNewMessage.this, "send message failed: " + msg, Toast.LENGTH_LONG).show();
            }
        }.execute(null, null, null);
    }
}
}

感谢您的时间。

2 个答案:

答案 0 :(得分:0)

按照以下步骤: 1.获取应用用户设备的注册ID并将其保存到您的数据库中。

private String getRegistrationId(Context context) 
{
   final SharedPreferences prefs = getGCMPreferences(context);
   String registrationId = prefs.getString(PROPERTY_REG_ID, "");
   if (registrationId.isEmpty()) {
       Log.d(TAG, "Registration ID not found.");
       return "";
   }
   int registeredVersion = prefs.getInt(PROPERTY_APP_VERSION, Integer.MIN_VALUE);
   int currentVersion = getAppVersion(context);
   if (registeredVersion != currentVersion) {
        Log.d(TAG, "App version changed.");
        return "";
    }
    return registrationId;
}

2.使用您的PHP代码。(删除HTML部分)

注意 - 使用注册ID数组

3.在响应中打开这个带有注册ID的php脚本。

答案 1 :(得分:0)

您可以使用更长的方法将信息发送到php脚本。这个php脚本将选择用户的所有注册ID,并使用foreach循环发送通知。这意味着您需要将注册ID存储在mysql数据库中