This will return the information for a post. I'm using an example post (https://steemit.com/contest/@money-dreamer/30-sbd-webgl-screen-capture-contest) from my blog below.
This is the way I am trying to get the accounts that resteemed my post:
steem.api.getContent('money-dreamer', '30-sbd-webgl-screen-capture-contest', function(err, result) {
console.log( result.reblogged_by ); //always empty array
});
Resteems are not in an accounts history. Also, the reblogged_by array is always empty:
var query = {
tag: 'money-dreamer',
limit: 10
};
steem.api.getDiscussionsByBlog(query, function (err, result) {
console.log( result[0].reblogged_by ); //always empty array
}
I'll give the first person that finds a working example of JavaScript/NodeJS that gets a list of accounts that resteemed a post 10 SBD.