AsyncHttpClient.get() new TextHttpResponseHandler Not returning successful or failed
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
I have a node.js server running on localhost, and using an Android app I am trying to generate a client token with the code on the server; however, when using a AsyncHttpClient .get() method which creates a new TextHttpResponseHandler, neither the Success or Failed methods are called. I can open localhost:3000 in Chrome and I get the client token no worries, but no response on the Android app.
Node.js Server:
var braintree = require('braintree')
var express = require('express')
var app = express()
var gateway = braintree.connect({
accessToken: "access_token removed"
});
app.listen(3000);
app.get("/client_token", function (req, res) {
gateway.clientToken.generate({}, function (err, response) {
res.send(response.clientToken);
});
});
Android Code:
private void generateClientToken() {
AsyncHttpClient client = new AsyncHttpClient();
client.get("http://localhost:3000/client_token", new TextHttpResponseHandler() {
@Override
public void onFailure(int statusCode, Header headers, String responseString, Throwable throwable) {
Log.i(TAG, "onFailure: ");
}
@Override
public void onSuccess(int statusCode, Header headers, String responseString) {
Log.i(TAG, "onSuccess: ");
CLIENT_TOKEN = responseString;
}
});
}
I have tried using the runOnUIThread() method, but I get the same result.
To reiterate, neither functions are run, the logs are not executed and the client token variable is not changed when this method is run.
Any help appreciated!
Cheers!

add a comment |
I have a node.js server running on localhost, and using an Android app I am trying to generate a client token with the code on the server; however, when using a AsyncHttpClient .get() method which creates a new TextHttpResponseHandler, neither the Success or Failed methods are called. I can open localhost:3000 in Chrome and I get the client token no worries, but no response on the Android app.
Node.js Server:
var braintree = require('braintree')
var express = require('express')
var app = express()
var gateway = braintree.connect({
accessToken: "access_token removed"
});
app.listen(3000);
app.get("/client_token", function (req, res) {
gateway.clientToken.generate({}, function (err, response) {
res.send(response.clientToken);
});
});
Android Code:
private void generateClientToken() {
AsyncHttpClient client = new AsyncHttpClient();
client.get("http://localhost:3000/client_token", new TextHttpResponseHandler() {
@Override
public void onFailure(int statusCode, Header headers, String responseString, Throwable throwable) {
Log.i(TAG, "onFailure: ");
}
@Override
public void onSuccess(int statusCode, Header headers, String responseString) {
Log.i(TAG, "onSuccess: ");
CLIENT_TOKEN = responseString;
}
});
}
I have tried using the runOnUIThread() method, but I get the same result.
To reiterate, neither functions are run, the logs are not executed and the client token variable is not changed when this method is run.
Any help appreciated!
Cheers!

Hello, are you using an emulator ? In that case, localhost is not the right url but someething like 10.0.2.2:3000 or 10.0.2.3:3000
– Yourange
Jan 3 at 13:17
Local host url will not be worked in real device. If you want to test it with then you must run your app in emulator.
– Piyush
Jan 3 at 13:28
add a comment |
I have a node.js server running on localhost, and using an Android app I am trying to generate a client token with the code on the server; however, when using a AsyncHttpClient .get() method which creates a new TextHttpResponseHandler, neither the Success or Failed methods are called. I can open localhost:3000 in Chrome and I get the client token no worries, but no response on the Android app.
Node.js Server:
var braintree = require('braintree')
var express = require('express')
var app = express()
var gateway = braintree.connect({
accessToken: "access_token removed"
});
app.listen(3000);
app.get("/client_token", function (req, res) {
gateway.clientToken.generate({}, function (err, response) {
res.send(response.clientToken);
});
});
Android Code:
private void generateClientToken() {
AsyncHttpClient client = new AsyncHttpClient();
client.get("http://localhost:3000/client_token", new TextHttpResponseHandler() {
@Override
public void onFailure(int statusCode, Header headers, String responseString, Throwable throwable) {
Log.i(TAG, "onFailure: ");
}
@Override
public void onSuccess(int statusCode, Header headers, String responseString) {
Log.i(TAG, "onSuccess: ");
CLIENT_TOKEN = responseString;
}
});
}
I have tried using the runOnUIThread() method, but I get the same result.
To reiterate, neither functions are run, the logs are not executed and the client token variable is not changed when this method is run.
Any help appreciated!
Cheers!

I have a node.js server running on localhost, and using an Android app I am trying to generate a client token with the code on the server; however, when using a AsyncHttpClient .get() method which creates a new TextHttpResponseHandler, neither the Success or Failed methods are called. I can open localhost:3000 in Chrome and I get the client token no worries, but no response on the Android app.
Node.js Server:
var braintree = require('braintree')
var express = require('express')
var app = express()
var gateway = braintree.connect({
accessToken: "access_token removed"
});
app.listen(3000);
app.get("/client_token", function (req, res) {
gateway.clientToken.generate({}, function (err, response) {
res.send(response.clientToken);
});
});
Android Code:
private void generateClientToken() {
AsyncHttpClient client = new AsyncHttpClient();
client.get("http://localhost:3000/client_token", new TextHttpResponseHandler() {
@Override
public void onFailure(int statusCode, Header headers, String responseString, Throwable throwable) {
Log.i(TAG, "onFailure: ");
}
@Override
public void onSuccess(int statusCode, Header headers, String responseString) {
Log.i(TAG, "onSuccess: ");
CLIENT_TOKEN = responseString;
}
});
}
I have tried using the runOnUIThread() method, but I get the same result.
To reiterate, neither functions are run, the logs are not executed and the client token variable is not changed when this method is run.
Any help appreciated!
Cheers!


asked Jan 3 at 13:11
Liam GLiam G
7619
7619
Hello, are you using an emulator ? In that case, localhost is not the right url but someething like 10.0.2.2:3000 or 10.0.2.3:3000
– Yourange
Jan 3 at 13:17
Local host url will not be worked in real device. If you want to test it with then you must run your app in emulator.
– Piyush
Jan 3 at 13:28
add a comment |
Hello, are you using an emulator ? In that case, localhost is not the right url but someething like 10.0.2.2:3000 or 10.0.2.3:3000
– Yourange
Jan 3 at 13:17
Local host url will not be worked in real device. If you want to test it with then you must run your app in emulator.
– Piyush
Jan 3 at 13:28
Hello, are you using an emulator ? In that case, localhost is not the right url but someething like 10.0.2.2:3000 or 10.0.2.3:3000
– Yourange
Jan 3 at 13:17
Hello, are you using an emulator ? In that case, localhost is not the right url but someething like 10.0.2.2:3000 or 10.0.2.3:3000
– Yourange
Jan 3 at 13:17
Local host url will not be worked in real device. If you want to test it with then you must run your app in emulator.
– Piyush
Jan 3 at 13:28
Local host url will not be worked in real device. If you want to test it with then you must run your app in emulator.
– Piyush
Jan 3 at 13:28
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54022988%2fasynchttpclient-get-new-texthttpresponsehandler-not-returning-successful-or-fa%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54022988%2fasynchttpclient-get-new-texthttpresponsehandler-not-returning-successful-or-fa%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Hello, are you using an emulator ? In that case, localhost is not the right url but someething like 10.0.2.2:3000 or 10.0.2.3:3000
– Yourange
Jan 3 at 13:17
Local host url will not be worked in real device. If you want to test it with then you must run your app in emulator.
– Piyush
Jan 3 at 13:28