1

我正在使用 Google 示例项目来推送通知,我已经成功构建并部署了客户端和服务器应用程序,并且我能够在服务器端注册设备,当我尝试发送通知时,它显示消息已被推送但我是未在设备或模拟器上通知。

客户端应用程序使用 IDE eclipse 编译和部署,Sample Server 应用程序由 ANT builder 构建并部署在 Tomcat 7 中。

我正在使用带有 gmail 配置的 Android 4.2 Google API 模拟器和设备。

4

3 回答 3

2

在本文中,我将尝试解释如何使用 ASP.NET 和 C# 为 Android 集成推送通知服务。众所周知,移动应用正在成为蓬勃发展的市场趋势。一些自定义移动应用程序使用推送通知服务向应用程序用户提供更新。在这里,我将解释我们如何使用 Google 的 GCM 推送通知服务。

类文件“AndroidGCMPushNotification.cs”

   using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Web;
    using System.Net;
    using System.Text;
    using System.IO;
    using System.Security.Cryptography.X509Certificates;
    using System.Net.Security;
    using System.Collections.Specialized;


public class AndroidGCMPushNotification
{
    public AndroidGCMPushNotification()
    {
        //
        // TODO: Add constructor logic here
        //
    }
    public string SendNotification(string deviceId, string message)
    {
        string GoogleAppID = "google application id";        
        var SENDER_ID = "9999999999";
        var value = message;
        WebRequest tRequest;
        tRequest = WebRequest.Create("https://android.googleapis.com/gcm/send");
        tRequest.Method = "post";
        tRequest.ContentType = " application/x-www-form-urlencoded;charset=UTF-8";
        tRequest.Headers.Add(string.Format("Authorization: key={0}", GoogleAppID));

        tRequest.Headers.Add(string.Format("Sender: id={0}", SENDER_ID));

        string postData = "collapse_key=score_update&time_to_live=108&delay_while_idle=1&data.message=" + value + "&data.time=" + System.DateTime.Now.ToString() + "®istration_id=" + deviceId + "";
        Console.WriteLine(postData);
        Byte[] byteArray = Encoding.UTF8.GetBytes(postData);
        tRequest.ContentLength = byteArray.Length;

        Stream dataStream = tRequest.GetRequestStream();
        dataStream.Write(byteArray, 0, byteArray.Length);
        dataStream.Close();

        WebResponse tResponse = tRequest.GetResponse();

        dataStream = tResponse.GetResponseStream();

        StreamReader tReader = new StreamReader(dataStream);

        String sResponseFromServer = tReader.ReadToEnd();


        tReader.Close();
        dataStream.Close();
        tResponse.Close();
        return sResponseFromServer;
    }
}

您可以通过传递设备 ID 和消息来调用 SendNotification 函数。

AndroidGCMPushNotification apnGCM = new AndroidGCMPushNotification();

string strResponse =
apnGCM.SendNotification("123123xxxxxxxxxxxxxxxxxxxxxxxx",
"Test Push Notification message ");
于 2013-01-24T13:44:55.247 回答
0

要发送 GCM 推送,您实际上并不需要在 berween 拥有第三方服务器。这是 GCM 优于 C2DM 的最佳部分。

     HttpClient httpclient = new DefaultHttpClient();

     HttpPost httppost = new HttpPost("https://android.googleapis.com/gcm/send");
     httppost.setHeader("Authorization", "key=" + GCM_AUTH_KEY);
     httppost.setHeader("Content-Type", "application/json");

     try {

        String reqBody = DATA_YOU_WANNA_SEND_INJSON_FORMAT;

        BasicHttpEntity e = new BasicHttpEntity();

        ByteArrayInputStream is = new ByteArrayInputStream(reqBody.getBytes());
        e.setContent(is);
        httppost.setEntity(e);
        Log.d("@@ Data being sent via push : " + reqBody);

        return httpclient.execute(httppost);
     } catch (ClientProtocolException e) {
        Log.e(e.getMessage());
     } catch (IOException e) {
        Log.e(e.getMessage());
     }

通过这种方法,您可以发送推送消息。

如果您谈论演示应用程序为什么不发送推送,那么我在实现时也尝试过,我遇到了同样的问题。

但是使用这种方法你总是可以发送 GCM,唯一的事情是你的设备必须注册。

此外,可以通过以下方式查看结果:

int statusCode = response.getStatusLine().getStatusCode(); Log.d("@@响应状态码::" + statusCode);

        if (statusCode == 200) {
           callback.onSuccess();
        } else {
           String reason = response.getStatusLine().getReasonPhrase();
           Log.d("@@ response reason phrase :: " + reason);
           callback.onFailure(reason);
        }
        Log.d("@@ complete response object : " + EntityUtils.toString(response.getEntity()));
于 2013-01-10T13:30:27.610 回答
-1

检查您的 Android 模拟器是否正在使用 Google API,并且您已额外安装了 Google Play 服务。

安装 Google Play 服务: 在此处输入图像描述

选择适用于 Android 模拟器目标的 Google API: 在此处输入图像描述

于 2014-05-13T09:50:47.403 回答