Owd-Larrd / gwt-google-apis

Automatically exported from code.google.com/p/gwt-google-apis
0 stars 0 forks source link

JSONP response code missing #467

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Found in Release: 2.3

Platform: Linux

I have JSON-P requests in my code similar to this: 

JsonpRequestBuilder jsonp = new JsonpRequestBuilder(); 
                jsonp.requestObject(jsonUrl, new AsyncCallback<T>() { 
                        public void onFailure(Throwable throwable) { /* error */ } 
                        public void onSuccess(T t) { /*do something*/ } 
                }); 
some GET-requests return 200, others 302 and so on, and I should be 
able to return a different "answer" respect to this value. 
How can I know what's the response value returned as from the API I can't get 
this information?

Workaround if you have one:
No any workaround at the moment

Links to the relevant Google Group posts:
http://groups.google.com/group/google-web-toolkit/browse_thread/thread/493bc5da3
f2f5e94

Original issue reported on code.google.com by antongiu...@gmail.com on 20 May 2011 at 5:59

GoogleCodeExporter commented 9 years ago
Hi,

This doesn't appear to be related to the Google API Libraries for GWT.

I think you are looking for the Google Web Toolkit issue tracker.

http://code.google.com/p/google-web-toolkit

Original comment by zundel@google.com on 20 May 2011 at 8:24