getTheFollowing
Get the starred list of a specified user
Path Parameters
- username requiredThe specified username that needs to be obtained from the fan list 
Query Parameters
- pagePage num (default is 1) 
- per_pagePage size (default 30, max 100) 
Header Parameters
- Authorization requiredOauth2 token or private token (needs to start with Bearer plus a space) 
Responses
- 200
- 401
Success
- application/json
- application/xml
- Schema
- Example (from schema)
Schema
- Array [
- login stringusername 
- id stringuser id 
- avatar_url stringavataurl 
- url stringThe interface path to obtain user information based on the user name 
- html_url stringhtml_url 
- organizations_url stringorganizations_url 
- repos_url stringrepos_url 
- ]
[
  {
    "login": "mrpuatomgit",
    "id": "63db126c0566d2f7d2c9498c",
    "avatar_url": "https://img-host/uploads/user/1656318880150_5104.png",
    "url": "https://api.atomgit.com/users/mrpuatomgit",
    "html_url": "https://atomgit.com/mrpuatomgit",
    "organizations_url": "https://atomgit.com/users/zhangzhe/starred",
    "repos_url": "https://atomgit.com/users/zhangzhe/projects"
  }
]
- Schema
- Example (from schema)
Schema
- Array [
- login stringusername 
- id stringuser id 
- avatar_url stringavataurl 
- url stringThe interface path to obtain user information based on the user name 
- html_url stringhtml_url 
- organizations_url stringorganizations_url 
- repos_url stringrepos_url 
- ]
<0>
  <login>mrpuatomgit</login>
  <id>63db126c0566d2f7d2c9498c</id>
  <avatar_url>https://img-host/uploads/user/1656318880150_5104.png</avatar_url>
  <url>https://api.atomgit.com/users/mrpuatomgit</url>
  <html_url>https://atomgit.com/mrpuatomgit</html_url>
  <organizations_url>https://atomgit.com/users/zhangzhe/starred</organizations_url>
  <repos_url>https://atomgit.com/users/zhangzhe/projects</repos_url>
</0>
invalid token
- application/json
- application/xml
- Schema
- Example (from schema)
Schema
- error stringerror name 
- error_description stringwrong description 
{
  "error": "invalid_token",
  "error_description": "Invalid token, please provide correct token"
}
- Schema
- Example (from schema)
Schema
- error stringerror name 
- error_description stringwrong description 
<root>
  <error>invalid_token</error>
  <error_description>Invalid token, please provide correct token</error_description>
</root>
Loading...