android-async-http Questions
2
Solved
I get IllegalStateException on Google-Play Console which I can not reproduce and I don't understand what is the issue.
Here is the log from Google-Play Console
java.lang.RuntimeException:
at co...
Albata asked 19/11, 2017 at 23:0
5
I know I can upload single file from AsyncHttpClient
http://loopj.com/android-async-http/
File myFile = new File("/path/to/file.png");
RequestParams params = new RequestParams();
try {
params.pu...
Tippet asked 14/8, 2012 at 8:38
9
Solved
I am using android-async-http and really liking it. I've run into a problem with POSTing data. I have to post data to the API in the following format: -
<request>
<notes>Test api sup...
Prattle asked 24/10, 2012 at 15:7
3
I am looking into both these Android Http Networking libraries.
I would like some peoples experiences with using the two libraries. Personally I have always used the http://loopj.com/android-async...
Substitution asked 17/8, 2014 at 6:30
4
Solved
i was using AsyncHttpClient link for making http calls but now our server has migrated to HTTPS and I am getting exception javax.net.ssl.SSLPeerUnverifiedException: No peer certificate .
Has anyone...
Burkitt asked 17/2, 2014 at 16:4
1
Solved
I want to send JSON as a POST to my localhost server with LoopJ's AsndroidAsyncHttpt. I'm using this method:
public void post(Context context, String url, HttpEntity entity, String contentType, Asy...
Auberon asked 2/6, 2015 at 11:17
1
Solved
While using the android-async-http library I stumbled upon params.add().
I've been using params.put() for a while and it seems better than add() since it allows data types other than String (like...
Maleficence asked 25/12, 2014 at 17:11
1
Solved
I am currently using Sugar ORM and Android Async Http Client for my Android application.
I read through the documentation of Sugar ORM and did exactly what is written there.
My HttpClient is usin...
Bridal asked 1/10, 2014 at 21:20
2
Solved
I was using LoopJ AndroidAsyncHttp library to comunicate with my PhP Server. And i got a problem.
I need to send a JsonObject like that:
{ "data": 2376845,
"data2": 12545,
"array": [{"data3":...
Bellebelleek asked 10/1, 2013 at 17:56
8
Solved
I have created the following class:
public class AsyncHttpsClientHelper {
public static final int REMOVE_CREDIT_CARD = 1;
public static final int ENABLE_AUTORENEW = 2;
// +10 final ints...
priva...
Dialogize asked 22/5, 2014 at 11:41
3
Solved
I'm using LoopJ AndroidAsyncHttp to download images but when I try it for HTTPS URLs I get no response.
Code:
AsyncHttpClient client = new AsyncHttpClient();
client.get(httpsUrlString, new BinaryH...
Reckless asked 9/10, 2013 at 10:27
1
© 2022 - 2024 — McMap. All rights reserved.