Created
January 14, 2017 23:53
-
-
Save iformas/c65b5ba0a64a066c4a73cff498e56a05 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var userId= ""; | |
request(data, function (error, response, body) { | |
if (!error && response.statusCode == 200) { | |
userId = body.user.id.toString(); | |
console.log(userId);//muestra la respuesta corrrecta | |
} | |
}); | |
console.log(userId);//no muestra nada |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment