| RelationshipsFollowedBy Method (Int32, String) |
Get the list of users this user is followed by.
Requires Authentication: False
Required scope: relationships
Namespace: InstaSharp.EndpointsAssembly: InstaSharp (in InstaSharp.dll) Version: 2.0.0.0 (2.0.0.0)
Syntax public Task<UsersResponse> FollowedBy(
int userId,
string cursor
)
Public Function FollowedBy (
userId As Integer,
cursor As String
) As Task(Of UsersResponse)
public:
Task<UsersResponse^>^ FollowedBy(
int userId,
String^ cursor
)
member FollowedBy :
userId : int *
cursor : string -> Task<UsersResponse>
Parameters
- userId
- Type: SystemInt32
The id of the user to get the followers of. - cursor
- Type: SystemString
The next cursor id
Return Value
Type:
TaskUsersResponseUsers response
See Also