ChatterService.ChatterRestService.GetFollowers C# (CSharp) Method

GetFollowers() public method

public GetFollowers ( string userId ) : ChatterResponse
userId string
return ChatterResponse
        public ChatterResponse GetFollowers(string userId)
        {
            return MakeUserRestCall(userId, "followers");
        }

Usage Example

 public void TestRestGetFollowers()
 {
     ChatterService.ChatterRestService service = new ChatterService.ChatterRestService(_url, _logService);
     service.Login(_client_id, _grant_type, _client_secret, _username, _password);
     service.GetFollowers("005A0000001X3Nb");
 }
All Usage Examples Of ChatterService.ChatterRestService::GetFollowers