跳到主要内容

List All Followers of a Specified Organization

GET 

https://api.gitcode.com/api/v5/orgs/:owner/followers

Request

Responses

Successful Response

Response Headers
    var client = new HttpClient();
    var request = new HttpRequestMessage(HttpMethod.Get, "https://api.gitcode.com/api/v5/orgs/:owner/followers");
    request.Headers.Add("Accept", "application/json");
    var response = await client.SendAsync(request);
    response.EnsureSuccessStatusCode();
    Console.WriteLine(await response.Content.ReadAsStringAsync());
    Request Collapse all
    Base URL
    https://api.gitcode.com
    Parameters
    — pathrequired
    — queryrequired
    — query
    — query
    ResponseClear

    Click the Send API Request button above and see the response here!