Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google's Volley lib with Authenticated Appengine endpoints?

Google recently released Volley - a framework for handling network requests on Android. My question is can/should this lib be used with Appengine's cloud endpoints? The endpoints give you libraries to handle all the networking and authentication, but would Volley have better performance? For example SPDY can by used with Volley when used with OkHttp, which would give some performance/battery gains. Has anyone used Volley for authenticated requests with Appengine Cloud endpoints?

Anyone from Google want comment on the performance of the supplied Google-client-libs vs. Volley?

like image 574
Patrick Avatar asked May 28 '13 14:05

Patrick


1 Answers

I am using retrofit instead of Volley. okhttp is built-in. It is easy to handle endpoints. You can find it here:

http://square.github.io/retrofit/

like image 195
adnbsr Avatar answered Nov 05 '22 00:11

adnbsr