getUserFollowing
List the current user's starred list
Query Parameters
- page
Page num (default is 1)
- per_page
Page size (default 30, max 100)
Header Parameters
- Authorization required
Oauth2 token or private token (needs to start with Bearer plus a space)
Responses
- 200
- 401
Success
- application/xml
- Schema
- Example (from schema)
Schema
- Array [
- login string
username
- id string
user id
- avatar_url string
avataurl
- url string
The interface path to obtain user information based on the user name
- html_url string
html_url
- organizations_url string
organizations_url
- repos_url string
repos_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 string
error name
- error_description string
wrong description
{
"error": "invalid_token",
"error_description": "Invalid token, please provide correct token"
}
- Schema
- Example (from schema)
Schema
- error string
error name
- error_description string
wrong description
<root>
<error>invalid_token</error>
<error_description>Invalid token, please provide correct token</error_description>
</root>
Loading...