[–] yeldarb 12y ago ↗ 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.request.post({ url: 'http://apibunny.com/users', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ twitter_handle: '@braddwyer' }) }, function(error, response, body) { console.log(body); });Results in:{ "error": "Request was malformed.", "detail": "TypeError: Cannot call method 'forEach' of undefined" }Not sure how to go any further with no API docs. [–] picsoung 12y ago ↗ Take a look to the tools we used to develop this API ;)It has a particular format to do POST request. Good luck !
[–] picsoung 12y ago ↗ Take a look to the tools we used to develop this API ;)It has a particular format to do POST request. Good luck !
3 comments
[ 4.7 ms ] story [ 18.0 ms ] threadrequest.post({ url: 'http://apibunny.com/users', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ twitter_handle: '@braddwyer' }) }, function(error, response, body) { console.log(body); });
Results in:
{ "error": "Request was malformed.", "detail": "TypeError: Cannot call method 'forEach' of undefined" }
Not sure how to go any further with no API docs.
It has a particular format to do POST request. Good luck !