- 
                Notifications
    
You must be signed in to change notification settings  - Fork 31
 
Available Methods
TOC
- Follow API
 
The node needs to enable those plugins
The follow_api covers all api calls related to blogs, feeds, and followes.
TOC
- getFollowers
 - getFollowing
 - getFollowCount
 - getFeedEntries
 - getFeed
 - getBlogEntries
 - getBlog
 - getAccountReputations
 - getRebloggedBy
 - getBlogAuthors
 
Use this method to find out if an account is following another one or get a list of all followers of an account.
This next method can be used to get the reputation for one or more accounts.
Parameters
Use this method to find out, which user have resteemed a specific post.
The method requires the author of the post and its permanent link, so a method call could look like this:
List<AccountName> accountNames = steemApiWrapper.getRebloggedBy(new AccountName("dez1337"),
                "steemj-v0-2-6-has-been-released-update-11");The result of this call is a list of account names which have resteemed the given post.
Use this method to find out, how many blog entries of which authors have been published by an account.
The method only requires an account name of the blog owner to analzse, so a method call could look like this.
List<PostsPerAuthorPair> blogAuthors = steemApiWrapper.getBlogAuthors(new AccountName("dez1337"));And would return a list of pairs, while earch pair consists of an author name and the number of blog entries that dez1337 has resteemed from this author.
ausbitbank: 1
good-karma: 3
...
In this case two pairs have been returned, providing the information that dez1337 has currently resteemed one post from ausbitsbank in his blog history, and three posts from good-karma.
This project is developed by dez1337