What steps will reproduce the problem?
uaing v0.26.7, trying to POST @ google cloud messaging
a)the post must contain headers like :
"Authorization", "key=yourkeyhere"
"Content-Type", "application/json"
the only way I found (searching internet) is to create a
AjaxCallback<JSONObject> cb;
-set the url
-set the header
-set the params
always the response is code - 400 writes :
JSON_PARSING_ERROR: Unexpected character (d) at position 0.
or
JSON_PARSING_ERROR: Unexpected token END OF FILE at position 0
shot : http://i.imgur.com/vFF3hJL.png
----------
the post parameters must be like (PHP) :
$fields = array('registration_ids' => $registrationIDs,
'data' => array("message" => $message), );
array['registration_ids'] = 12312
array['data'] = array['message'] = "hello"
I tried post parameters via :
-Map<String, Object> params = new HashMap<String, Object>();
-List<NameValuePair> pairs = new ArrayList<NameValuePair>() +
UrlEncodedFormEntity
-HashMap<String, JSONObject>
no idea.... how to..
keep in mind when there is no valid header, returns 401 Authorized
Original issue reported on code.google.com by yotag...@gmail.com on 19 Feb 2014 at 6:22
Original issue reported on code.google.com by
yotag...@gmail.com
on 19 Feb 2014 at 6:22