Click here to Skip to main content
15,896,154 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
C#
public string SendNotification(string deviceId, string message)
{
    string GoogleAppID = "*************************************";
    var SENDER_ID = "******************";
    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;
}

please give answer if any one knows it

while implementing the gcm push notification with above code for android i got the error like Error=MissingRegistration

Thanks in Advance.
Posted
Updated 12-Nov-12 1:44am
v2
Comments
Member 9155024 27-Feb-13 6:40am    
Did u find a solution regarding this error?? please let me know about it

1 solution

®istration_id replace with &Registration_id
 
Share this answer
 
Comments
Member 9982852 13-Oct-18 7:26am    
&Registration_id but same issue

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900