繁体   English   中英

Google在Asp.Net中是否有用于gcm服务器的示例?

[英]Does google have a sample for gcm server in Asp.Net?

我想在Asp.Net中实现GCM服务器。 有样品吗? 我在Android SDK文件夹中寻找它,但是.Net没有示例?

有男孩知道.Net样本吗?

尝试这个 :

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 ");

这行有一个小错误:

 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之前缺少“&”,因此&registration_id是正确的。

样本效果完美。 只要确保将服务器密钥放在:

string GoogleAppID = "GGOGLE_API_KEY";

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM