Your app could help site owners add a widget of recommended blog, comment, or forum writers to follow based on their followers count.
-
Get all members of a site by calling the List Members endpoint.
-
For each member, get their followers from the List Member Followers endpoint, count them, and sort them by highest amount of followers.
Your app could help site owners add a widget showing connections of connections, and how many connections the specified member has in common with them.
-
Get the specified member's connections using the List Member Followers endpoint and the List Member Following endpoint.
-
For each direct connection, get their connections in both directions, using the same endpoints as in step 1.
-
Using the list of indirect connections from step 2, query any existing relationships to the specified member, using the List Member Connections endpoint.
-
Sort the resulting list of potential connections into the following sets:
- The specified member already follows the second-degree connection. Remove them from the suggestion list.
- The second-degree connection follows the specified member. Add to a "follows you" sub-list.
- There is not yet any direct connection to the second-degree connection. These are the members to use for the suggestion list.
Members may block each other within the Wix platform.
Blocking hides all member information and activity, including the fact that the block exists, from the blocked member.
Blocks are not currently accessible via REST API.
A member cannot follow or be followed by a member who they block or are blocked by.
If member A
blocks member B
any following relationship between member A
and member B
will be removed.
Lists members who follow the requested member.
Permission Scopes
For app development, you must have one of the following permission scopes:Syntax
Lists members who are followed by the requested member.
Permission Scopes
For app development, you must have one of the following permission scopes:Syntax
Lists a member's follower or following connections to the other members specified in the request.
Note: If no other members' IDs (
connectedMemberIds
) are passed, the call will return successful, but with no data.
Permission Scopes
For app development, you must have one of the following permission scopes:Syntax
Triggered when a member follows another member.
Event Body
Triggered when a member unfollows another member.