Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
hive-js
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
hive
hive-js
Commits
46337411
Commit
46337411
authored
4 years ago
by
Mahdi Yari
Browse files
Options
Downloads
Patches
Plain Diff
add getFollowing
parent
c6106523
No related branches found
No related tags found
1 merge request
!17
update readme
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
doc/README.md
+38
-4
38 additions, 4 deletions
doc/README.md
with
38 additions
and
4 deletions
doc/README.md
+
38
−
4
View file @
46337411
...
@@ -1492,8 +1492,10 @@ hive.api.getApiByName(apiName, function(err, result) {
...
@@ -1492,8 +1492,10 @@ hive.api.getApiByName(apiName, function(err, result) {
```
```
## Follow API
## Follow API
The follower API queries information about follow relationships between accounts. The API is read-only and does not create changes on the blockchain.
### Get Followers
### Get Followers
Returns an alphabetical ordered array of the accounts that are following a particular account.
```
js
```
js
hive
.
api
.
getFollowers
(
following
,
startFollower
,
followType
,
limit
,
function
(
err
,
result
)
{
hive
.
api
.
getFollowers
(
following
,
startFollower
,
followType
,
limit
,
function
(
err
,
result
)
{
console
.
log
(
err
,
result
);
console
.
log
(
err
,
result
);
...
@@ -1538,13 +1540,45 @@ hive.api.getFollowers('username', lastKnownFollower, 'blog', 2, function(err, re
...
@@ -1538,13 +1540,45 @@ hive.api.getFollowers('username', lastKnownFollower, 'blog', 2, function(err, re
See also:
[
getFollowing
](
#get-following
)
,
[
getFollowCount
](
#get-follow-count
)
See also:
[
getFollowing
](
#get-following
)
,
[
getFollowCount
](
#get-follow-count
)
### Get Following
### Get Following
```
Returns an alphabetical ordered Array of the accounts that are followed by a particular account.
```
js
hive
.
api
.
getFollowing
(
follower
,
startFollowing
,
followType
,
limit
,
function
(
err
,
result
)
{
hive
.
api
.
getFollowing
(
follower
,
startFollowing
,
followType
,
limit
,
function
(
err
,
result
)
{
console
.
log
(
err
,
result
);
console
.
log
(
err
,
result
);
});
});
```
```
### Get Follow Count
|Parameter|Description|Datatype|Notes|
|---|---|---|---|
|follower|The account to get the following for|String|No leading @ symbol|
|startFollowing|Start the list at which followed account?|String|No leading @symbol. Use the empty string
`''`
to start the list|
|followType|??|??|Set to 0 or 'blog' - either works|
|limit|The maximum number of items to return|Integer||
|function()|Your callback|function|Tip: use
`console.log(err, result)`
to see the result|
Call Example:
```
js
hvie
.
api
.
getFollowing
(
'
username
'
,
''
,
'
blog
'
,
2
,
function
(
err
,
result
)
{
console
.
log
(
err
,
result
);
});
```
```
Return Example:
```
js
[
{
follower
:
'
username
'
,
following
:
'
user1
'
,
what
:
[
'
blog
'
]
},
{
follower
:
'
username
'
,
following
:
'
user2
'
,
what
:
[
'
blog
'
]
}
]
```
Using the Result:
```
js
// Extract followed accounts from the result into an array of account name strings
var
f
=
result
.
map
(
function
(
item
)
{
return
item
.
following
;
});
```
See the usage examples for
[
getFollowers
](
#get-followers
)
because the behaviour is very similar.
See also:
[
getFollowers
](
#get-followers
)
,
[
getFollowCount
](
#get-follow-count
)
### Get Follow Count
```
js
hive
.
api
.
getFollowCount
(
account
,
function
(
err
,
result
)
{
hive
.
api
.
getFollowCount
(
account
,
function
(
err
,
result
)
{
console
.
log
(
err
,
result
);
console
.
log
(
err
,
result
);
});
});
...
@@ -1553,13 +1587,13 @@ hive.api.getFollowCount(account, function(err, result) {
...
@@ -1553,13 +1587,13 @@ hive.api.getFollowCount(account, function(err, result) {
## Broadcast API
## Broadcast API
### Broadcast Transaction Synchronous
### Broadcast Transaction Synchronous
```
```
js
hive
.
api
.
broadcastTransactionSynchronous
(
trx
,
function
(
err
,
result
)
{
hive
.
api
.
broadcastTransactionSynchronous
(
trx
,
function
(
err
,
result
)
{
console
.
log
(
err
,
result
);
console
.
log
(
err
,
result
);
});
});
```
```
### Broadcast Block
### Broadcast Block
```
```
js
hive
.
api
.
broadcastBlock
(
b
,
function
(
err
,
result
)
{
hive
.
api
.
broadcastBlock
(
b
,
function
(
err
,
result
)
{
console
.
log
(
err
,
result
);
console
.
log
(
err
,
result
);
});
});
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment