1

Asp.NetにGCMサーバーを実装したいと思います。それについてのサンプルはありますか?Android SDKフォルダーで探していましたが、.Netのサンプルはありませんか?

.Netサンプルを知っている男の子はいますか?

4

2 に答える 2

0

これを試して :

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 = "GGOGLE_API_KEY";        
        var SENDER_ID = "SENDER_ID/PROJECT_NUMBER";
        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() + "registration_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("DEVICE_ID",
"Test Push Notification message ");
于 2013-08-24T15:21:48.467 に答える
0

この行には小さな間違いがあります:

 string postData = "collapse_key=score_update&time_to_live=108&
    delay_while_idle=1&data.message=" + value + "&data.time=" + 
    System.DateTime.Now.ToString() + "registration_id=" + deviceId + "";

パラメータ registration_id の前に「&」がないため、®istration_idは正しいです。

サンプルは完璧に動作します。サーバーキーを次の場所に置いてください。

string GoogleAppID = "GGOGLE_API_KEY";
于 2013-11-29T16:16:53.323 に答える