params ={
lat:28.7041,
long:77.1025,
//accuracy:100m
}
T.get('geo/reverse_geocode',params,returnloc)
function returnloc(err,data,response)
{
if(err){
console.log(err);
}
else{
console.log(data);
}
}
the above code is returning
{ result: { places: [ [Object], [Object], [Object], [Object] ] },
query:
{ url: 'https://api.twitter.com/1.1/geo/reverse_geocode.json?lat=28.7041&long=77.1025',
type: 'reverse_geocode',
params:
{ accuracy: 0,
coordinates: [Object],
granularity: 'neighborhood' } } }
but its not returning any bounding coordinates or place id
how can I get the place id is there any other way?