Open GoogleCodeExporter opened 9 years ago
yes i got the salution for this
Original comment by abhimany...@gmail.com
on 25 Jul 2013 at 1:57
Please, can you explain how did you resolve this issue?
Original comment by fernando...@gmail.com
on 3 Jan 2014 at 6:50
MulticastResult result = sender.sendNoRetry(message, devicesList);
will not help you .you need send json parameter to gsm url.use http Post method
like
HttpClient httpClient = new DefaultHttpClient();
try{
String messsage="";
JSONObject js=new JSONObject();
JSONObject js1=new JSONObject();
js.put("delay_while_idle", false) ;
js.put("collapse_key","0") ;
js1.put("payload",msg1) ;
js.put("time_to_live",600) ;
js.put("data", js1) ;
js.put("registration_ids", arraylist) ;
String message=js.toJSONString();
HttpPost request = new HttpPost("https://android.googleapis.com/gcm/send");
StringEntity params =new StringEntity(message,"UTF-8");
request.addHeader("Authorization", "key=Your App RegistrationId");
request.addHeader("content-type", "application/json;charset=UTF-8");
request.setEntity(params);
HttpResponse response = httpClient.execute(request);
BufferedReader rd = new BufferedReader(new InputStreamReader(response.getEntity().getContent()));
String line = "";
while ((line = rd.readLine()) != null) {
//Parse our JSON response
System.out.println(line);
JSONParser j = new JSONParser();
JSONObject o = (JSONObject)j.parse(line);
//Map r = (Map)o.get("success");
//log.info("check sucsess value>>>>>>");
succ=(o.get("success")).toString();
}
} catch (Exception e) {
e.getMessage();
}
Then only u can send arabic text.
result whould be Json Formate:=
{"multicast_id":8676960544645135217,"success":736,"failure":264,"canonical_ids":
0,"results{"message_id":"0:1386053246577771%25796c8300000030"},{"message_id":"0:
1386053246575977%25796c8300000030"},{"error":"NotRegistered"}]}
Abhimanyu
Original comment by abhimany...@gmail.com
on 8 Jan 2014 at 1:35
[deleted comment]
thanx for nice help but just change byte[] bytes = body.getBytes("UTF-8"); in
post method .
Original comment by nirajtha...@gmail.com
on 3 Apr 2014 at 2:32
You can find the fix for this bug in issue #17
Original comment by KurtHu...@gmail.com
on 25 Aug 2014 at 9:15
You can find a repo with the fix of issue #17 here:
https://github.com/kurthuwig/gcm/commit/d37f4d1c37ed8deaf1a161ca7b881c1d843f80df
Original comment by KurtHu...@gmail.com
on 25 Aug 2014 at 9:39
Original issue reported on code.google.com by
abhimany...@gmail.com
on 15 Jul 2013 at 2:49