Wrote a Node.js script to do a simple breadth-first search and got to the point where I submit my twitter handle to the exit node but it's throwing an error.<p>request.post({
url: '<a href="http://apibunny.com/users'" rel="nofollow">http://apibunny.com/users'</a>,
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
twitter_handle: '@braddwyer'
})
}, function(error, response, body) {
console.log(body);
});<p>Results in:<p>{
"error": "Request was malformed.",
"detail": "TypeError: Cannot call method 'forEach' of undefined"
}<p>Not sure how to go any further with no API docs.