Sunday, 23 April 2017

Cannot get the full json with request json

I am using

var url = 'firebase link with json';
request({
    url: url,
    json: true
}, function (error, response, body) {

    if (!error && response.statusCode === 200) {
        players = body;
    }
})

It has approximately 150 values. But when I am using the players variable it only has the players from 0 - 100. Does anybody know what might cause this problem?



via OFFLlNE

No comments:

Post a Comment