You are viewing a single comment's thread from:

RE: Steem.Js for dummies #5: Getting user's last post

in #utopian-io7 years ago

Is there any chance to get the accounts which reblogged a post? I'm using the JavaScript API of Steemit.

The only chance i see is searching in the post history of every user upvoted or commented the post.

HELP ME!!! 😁

Sort:  

Ah! I just found it!

steem.api.getRebloggedBy(author, permlink, function(err, result) {
console.log(err, result);
});

on this site