1

Google サンプル プロジェクトを使用してプッシュ通知を送信しています。クライアント アプリケーションとサーバー アプリケーションの両方を正常にビルドおよびデプロイしました。また、サーバー側でデバイスを登録できます。通知を送信しようとすると、メッセージがプッシュされたことが示されますが、デバイスまたはエミュレーターには通知されません。

クライアント アプリケーションは IDE eclipse でコンパイルおよびデプロイされ、Sample Server アプリケーションは ANT ビルダーによってビルドされ、Tomcat 7 でデプロイされます。

Android 4.2 Google API エミュレーターと gmail 構成のデバイスを使用しています。

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プッシュを送信するために、間にサードパーティのサーバーを配置する必要はありません。これが、C2DMよりもGCMの最良の部分です。

     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 に答える