1 Star 6 Fork 3

SDK For Gitee/gitee5j

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
GistsApi.md 25.74 KB
一键复制 编辑 原始数据 按行查看 历史

GistsApi

All URIs are relative to https://gitee.com/api/v5

Method HTTP request Description
deleteGistsGistIdCommentsId DELETE /gists/{gist_id}/comments/{id} 删除代码片段的评论
deleteGistsId DELETE /gists/{id} 删除指定代码片段
deleteGistsIdStar DELETE /gists/{id}/star 取消Star代码片段
getGists GET /gists 获取代码片段
getGistsGistIdComments GET /gists/{gist_id}/comments 获取代码片段的评论
getGistsGistIdCommentsId GET /gists/{gist_id}/comments/{id} 获取单条代码片段的评论
getGistsId GET /gists/{id} 获取单条代码片段
getGistsIdCommits GET /gists/{id}/commits 获取代码片段的commit
getGistsIdForks GET /gists/{id}/forks 获取 Fork 了指定代码片段的列表
getGistsIdStar GET /gists/{id}/star 判断代码片段是否已Star
getGistsStarred GET /gists/starred 获取用户Star的代码片段
patchGistsGistIdCommentsId PATCH /gists/{gist_id}/comments/{id} 修改代码片段的评论
patchGistsId PATCH /gists/{id} 修改代码片段
postGists POST /gists 创建代码片段
postGistsGistIdComments POST /gists/{gist_id}/comments 增加代码片段的评论
postGistsIdForks POST /gists/{id}/forks Fork代码片段
putGistsIdStar PUT /gists/{id}/star Star代码片段

deleteGistsGistIdCommentsId

deleteGistsGistIdCommentsId(gistId, id)

删除代码片段的评论

删除代码片段的评论

Example

// Import classes:
//import com.gitee.sdk.gitee5j.ApiClient;
//import com.gitee.sdk.gitee5j.ApiException;
//import com.gitee.sdk.gitee5j.Configuration;
//import com.gitee.sdk.gitee5j.auth.*;
//import com.gitee.sdk.gitee5j.api.GistsApi;

ApiClient defaultClient = Configuration.getDefaultApiClient();

// Configure OAuth2 access token for authorization: OAuth2
OAuth OAuth2 = (OAuth) defaultClient.getAuthentication("OAuth2");
OAuth2.setAccessToken("YOUR ACCESS TOKEN");

GistsApi apiInstance = new GistsApi();
String gistId = "gistId_example"; // String | 代码片段的ID
Integer id = 56; // Integer | 评论的ID
try {
    apiInstance.deleteGistsGistIdCommentsId(gistId, id);
} catch (ApiException e) {
    System.err.println("Exception when calling GistsApi#deleteGistsGistIdCommentsId");
    e.printStackTrace();
}

Parameters

Name Type Description Notes
gistId String 代码片段的ID
id Integer 评论的ID

Return type

null (empty response body)

Authorization

OAuth2

HTTP request headers

  • Content-Type: Not defined
  • Accept: Not defined

deleteGistsId

deleteGistsId(id)

删除指定代码片段

删除指定代码片段

Example

// Import classes:
//import com.gitee.sdk.gitee5j.ApiClient;
//import com.gitee.sdk.gitee5j.ApiException;
//import com.gitee.sdk.gitee5j.Configuration;
//import com.gitee.sdk.gitee5j.auth.*;
//import com.gitee.sdk.gitee5j.api.GistsApi;

ApiClient defaultClient = Configuration.getDefaultApiClient();

// Configure OAuth2 access token for authorization: OAuth2
OAuth OAuth2 = (OAuth) defaultClient.getAuthentication("OAuth2");
OAuth2.setAccessToken("YOUR ACCESS TOKEN");

GistsApi apiInstance = new GistsApi();
String id = "id_example"; // String | 代码片段的ID
try {
    apiInstance.deleteGistsId(id);
} catch (ApiException e) {
    System.err.println("Exception when calling GistsApi#deleteGistsId");
    e.printStackTrace();
}

Parameters

Name Type Description Notes
id String 代码片段的ID

Return type

null (empty response body)

Authorization

OAuth2

HTTP request headers

  • Content-Type: Not defined
  • Accept: Not defined

deleteGistsIdStar

deleteGistsIdStar(id)

取消Star代码片段

取消Star代码片段

Example

// Import classes:
//import com.gitee.sdk.gitee5j.ApiClient;
//import com.gitee.sdk.gitee5j.ApiException;
//import com.gitee.sdk.gitee5j.Configuration;
//import com.gitee.sdk.gitee5j.auth.*;
//import com.gitee.sdk.gitee5j.api.GistsApi;

ApiClient defaultClient = Configuration.getDefaultApiClient();

// Configure OAuth2 access token for authorization: OAuth2
OAuth OAuth2 = (OAuth) defaultClient.getAuthentication("OAuth2");
OAuth2.setAccessToken("YOUR ACCESS TOKEN");

GistsApi apiInstance = new GistsApi();
String id = "id_example"; // String | 代码片段的ID
try {
    apiInstance.deleteGistsIdStar(id);
} catch (ApiException e) {
    System.err.println("Exception when calling GistsApi#deleteGistsIdStar");
    e.printStackTrace();
}

Parameters

Name Type Description Notes
id String 代码片段的ID

Return type

null (empty response body)

Authorization

OAuth2

HTTP request headers

  • Content-Type: Not defined
  • Accept: Not defined

getGists

List<Code> getGists(since, page, perPage)

获取代码片段

获取代码片段

Example

// Import classes:
//import com.gitee.sdk.gitee5j.ApiClient;
//import com.gitee.sdk.gitee5j.ApiException;
//import com.gitee.sdk.gitee5j.Configuration;
//import com.gitee.sdk.gitee5j.auth.*;
//import com.gitee.sdk.gitee5j.api.GistsApi;

ApiClient defaultClient = Configuration.getDefaultApiClient();

// Configure OAuth2 access token for authorization: OAuth2
OAuth OAuth2 = (OAuth) defaultClient.getAuthentication("OAuth2");
OAuth2.setAccessToken("YOUR ACCESS TOKEN");

GistsApi apiInstance = new GistsApi();
String since = "since_example"; // String | 起始的更新时间,要求时间格式为 ISO 8601
Integer page = 1; // Integer | 当前的页码
Integer perPage = 20; // Integer | 每页的数量,最大为 100
try {
    List<Code> result = apiInstance.getGists(since, page, perPage);
    System.out.println(result);
} catch (ApiException e) {
    System.err.println("Exception when calling GistsApi#getGists");
    e.printStackTrace();
}

Parameters

Name Type Description Notes
since String 起始的更新时间,要求时间格式为 ISO 8601 [optional]
page Integer 当前的页码 [optional] [default to 1]
perPage Integer 每页的数量,最大为 100 [optional] [default to 20] [enum: 1, 100]

Return type

List<Code>

Authorization

OAuth2

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

getGistsGistIdComments

List<CodeComment> getGistsGistIdComments(gistId, page, perPage)

获取代码片段的评论

获取代码片段的评论

Example

// Import classes:
//import com.gitee.sdk.gitee5j.ApiClient;
//import com.gitee.sdk.gitee5j.ApiException;
//import com.gitee.sdk.gitee5j.Configuration;
//import com.gitee.sdk.gitee5j.auth.*;
//import com.gitee.sdk.gitee5j.api.GistsApi;

ApiClient defaultClient = Configuration.getDefaultApiClient();

// Configure OAuth2 access token for authorization: OAuth2
OAuth OAuth2 = (OAuth) defaultClient.getAuthentication("OAuth2");
OAuth2.setAccessToken("YOUR ACCESS TOKEN");

GistsApi apiInstance = new GistsApi();
String gistId = "gistId_example"; // String | 代码片段的ID
Integer page = 1; // Integer | 当前的页码
Integer perPage = 20; // Integer | 每页的数量,最大为 100
try {
    List<CodeComment> result = apiInstance.getGistsGistIdComments(gistId, page, perPage);
    System.out.println(result);
} catch (ApiException e) {
    System.err.println("Exception when calling GistsApi#getGistsGistIdComments");
    e.printStackTrace();
}

Parameters

Name Type Description Notes
gistId String 代码片段的ID
page Integer 当前的页码 [optional] [default to 1]
perPage Integer 每页的数量,最大为 100 [optional] [default to 20] [enum: 1, 100]

Return type

List<CodeComment>

Authorization

OAuth2

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

getGistsGistIdCommentsId

CodeComment getGistsGistIdCommentsId(gistId, id)

获取单条代码片段的评论

获取单条代码片段的评论

Example

// Import classes:
//import com.gitee.sdk.gitee5j.ApiClient;
//import com.gitee.sdk.gitee5j.ApiException;
//import com.gitee.sdk.gitee5j.Configuration;
//import com.gitee.sdk.gitee5j.auth.*;
//import com.gitee.sdk.gitee5j.api.GistsApi;

ApiClient defaultClient = Configuration.getDefaultApiClient();

// Configure OAuth2 access token for authorization: OAuth2
OAuth OAuth2 = (OAuth) defaultClient.getAuthentication("OAuth2");
OAuth2.setAccessToken("YOUR ACCESS TOKEN");

GistsApi apiInstance = new GistsApi();
String gistId = "gistId_example"; // String | 代码片段的ID
Integer id = 56; // Integer | 评论的ID
try {
    CodeComment result = apiInstance.getGistsGistIdCommentsId(gistId, id);
    System.out.println(result);
} catch (ApiException e) {
    System.err.println("Exception when calling GistsApi#getGistsGistIdCommentsId");
    e.printStackTrace();
}

Parameters

Name Type Description Notes
gistId String 代码片段的ID
id Integer 评论的ID

Return type

CodeComment

Authorization

OAuth2

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

getGistsId

CodeForksHistory getGistsId(id)

获取单条代码片段

获取单条代码片段

Example

// Import classes:
//import com.gitee.sdk.gitee5j.ApiClient;
//import com.gitee.sdk.gitee5j.ApiException;
//import com.gitee.sdk.gitee5j.Configuration;
//import com.gitee.sdk.gitee5j.auth.*;
//import com.gitee.sdk.gitee5j.api.GistsApi;

ApiClient defaultClient = Configuration.getDefaultApiClient();

// Configure OAuth2 access token for authorization: OAuth2
OAuth OAuth2 = (OAuth) defaultClient.getAuthentication("OAuth2");
OAuth2.setAccessToken("YOUR ACCESS TOKEN");

GistsApi apiInstance = new GistsApi();
String id = "id_example"; // String | 代码片段的ID
try {
    CodeForksHistory result = apiInstance.getGistsId(id);
    System.out.println(result);
} catch (ApiException e) {
    System.err.println("Exception when calling GistsApi#getGistsId");
    e.printStackTrace();
}

Parameters

Name Type Description Notes
id String 代码片段的ID

Return type

CodeForksHistory

Authorization

OAuth2

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

getGistsIdCommits

CodeForksHistory getGistsIdCommits(id)

获取代码片段的commit

获取代码片段的commit

Example

// Import classes:
//import com.gitee.sdk.gitee5j.ApiClient;
//import com.gitee.sdk.gitee5j.ApiException;
//import com.gitee.sdk.gitee5j.Configuration;
//import com.gitee.sdk.gitee5j.auth.*;
//import com.gitee.sdk.gitee5j.api.GistsApi;

ApiClient defaultClient = Configuration.getDefaultApiClient();

// Configure OAuth2 access token for authorization: OAuth2
OAuth OAuth2 = (OAuth) defaultClient.getAuthentication("OAuth2");
OAuth2.setAccessToken("YOUR ACCESS TOKEN");

GistsApi apiInstance = new GistsApi();
String id = "id_example"; // String | 代码片段的ID
try {
    CodeForksHistory result = apiInstance.getGistsIdCommits(id);
    System.out.println(result);
} catch (ApiException e) {
    System.err.println("Exception when calling GistsApi#getGistsIdCommits");
    e.printStackTrace();
}

Parameters

Name Type Description Notes
id String 代码片段的ID

Return type

CodeForksHistory

Authorization

OAuth2

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

getGistsIdForks

CodeForks getGistsIdForks(id, page, perPage)

获取 Fork 了指定代码片段的列表

获取 Fork 了指定代码片段的列表

Example

// Import classes:
//import com.gitee.sdk.gitee5j.ApiClient;
//import com.gitee.sdk.gitee5j.ApiException;
//import com.gitee.sdk.gitee5j.Configuration;
//import com.gitee.sdk.gitee5j.auth.*;
//import com.gitee.sdk.gitee5j.api.GistsApi;

ApiClient defaultClient = Configuration.getDefaultApiClient();

// Configure OAuth2 access token for authorization: OAuth2
OAuth OAuth2 = (OAuth) defaultClient.getAuthentication("OAuth2");
OAuth2.setAccessToken("YOUR ACCESS TOKEN");

GistsApi apiInstance = new GistsApi();
String id = "id_example"; // String | 代码片段的ID
Integer page = 1; // Integer | 当前的页码
Integer perPage = 20; // Integer | 每页的数量,最大为 100
try {
    CodeForks result = apiInstance.getGistsIdForks(id, page, perPage);
    System.out.println(result);
} catch (ApiException e) {
    System.err.println("Exception when calling GistsApi#getGistsIdForks");
    e.printStackTrace();
}

Parameters

Name Type Description Notes
id String 代码片段的ID
page Integer 当前的页码 [optional] [default to 1]
perPage Integer 每页的数量,最大为 100 [optional] [default to 20] [enum: 1, 100]

Return type

CodeForks

Authorization

OAuth2

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

getGistsIdStar

getGistsIdStar(id)

判断代码片段是否已Star

判断代码片段是否已Star

Example

// Import classes:
//import com.gitee.sdk.gitee5j.ApiClient;
//import com.gitee.sdk.gitee5j.ApiException;
//import com.gitee.sdk.gitee5j.Configuration;
//import com.gitee.sdk.gitee5j.auth.*;
//import com.gitee.sdk.gitee5j.api.GistsApi;

ApiClient defaultClient = Configuration.getDefaultApiClient();

// Configure OAuth2 access token for authorization: OAuth2
OAuth OAuth2 = (OAuth) defaultClient.getAuthentication("OAuth2");
OAuth2.setAccessToken("YOUR ACCESS TOKEN");

GistsApi apiInstance = new GistsApi();
String id = "id_example"; // String | 代码片段的ID
try {
    apiInstance.getGistsIdStar(id);
} catch (ApiException e) {
    System.err.println("Exception when calling GistsApi#getGistsIdStar");
    e.printStackTrace();
}

Parameters

Name Type Description Notes
id String 代码片段的ID

Return type

null (empty response body)

Authorization

OAuth2

HTTP request headers

  • Content-Type: Not defined
  • Accept: Not defined

getGistsStarred

List<Code> getGistsStarred(since, page, perPage)

获取用户Star的代码片段

获取用户Star的代码片段

Example

// Import classes:
//import com.gitee.sdk.gitee5j.ApiClient;
//import com.gitee.sdk.gitee5j.ApiException;
//import com.gitee.sdk.gitee5j.Configuration;
//import com.gitee.sdk.gitee5j.auth.*;
//import com.gitee.sdk.gitee5j.api.GistsApi;

ApiClient defaultClient = Configuration.getDefaultApiClient();

// Configure OAuth2 access token for authorization: OAuth2
OAuth OAuth2 = (OAuth) defaultClient.getAuthentication("OAuth2");
OAuth2.setAccessToken("YOUR ACCESS TOKEN");

GistsApi apiInstance = new GistsApi();
String since = "since_example"; // String | 起始的更新时间,要求时间格式为 ISO 8601
Integer page = 1; // Integer | 当前的页码
Integer perPage = 20; // Integer | 每页的数量,最大为 100
try {
    List<Code> result = apiInstance.getGistsStarred(since, page, perPage);
    System.out.println(result);
} catch (ApiException e) {
    System.err.println("Exception when calling GistsApi#getGistsStarred");
    e.printStackTrace();
}

Parameters

Name Type Description Notes
since String 起始的更新时间,要求时间格式为 ISO 8601 [optional]
page Integer 当前的页码 [optional] [default to 1]
perPage Integer 每页的数量,最大为 100 [optional] [default to 20] [enum: 1, 100]

Return type

List<Code>

Authorization

OAuth2

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

patchGistsGistIdCommentsId

CodeComment patchGistsGistIdCommentsId(gistId, id, body)

修改代码片段的评论

修改代码片段的评论

Example

// Import classes:
//import com.gitee.sdk.gitee5j.ApiClient;
//import com.gitee.sdk.gitee5j.ApiException;
//import com.gitee.sdk.gitee5j.Configuration;
//import com.gitee.sdk.gitee5j.auth.*;
//import com.gitee.sdk.gitee5j.api.GistsApi;

ApiClient defaultClient = Configuration.getDefaultApiClient();

// Configure OAuth2 access token for authorization: OAuth2
OAuth OAuth2 = (OAuth) defaultClient.getAuthentication("OAuth2");
OAuth2.setAccessToken("YOUR ACCESS TOKEN");

GistsApi apiInstance = new GistsApi();
String gistId = "gistId_example"; // String | 代码片段的ID
Integer id = 56; // Integer | 评论的ID
CommentBody body = new CommentBody(); // CommentBody | 
try {
    CodeComment result = apiInstance.patchGistsGistIdCommentsId(gistId, id, body);
    System.out.println(result);
} catch (ApiException e) {
    System.err.println("Exception when calling GistsApi#patchGistsGistIdCommentsId");
    e.printStackTrace();
}

Parameters

Name Type Description Notes
gistId String 代码片段的ID
id Integer 评论的ID
body CommentBody [optional]

Return type

CodeComment

Authorization

OAuth2

HTTP request headers

  • Content-Type: /
  • Accept: application/json

patchGistsId

CodeForksHistory patchGistsId(id, body)

修改代码片段

修改代码片段

Example

// Import classes:
//import com.gitee.sdk.gitee5j.ApiClient;
//import com.gitee.sdk.gitee5j.ApiException;
//import com.gitee.sdk.gitee5j.Configuration;
//import com.gitee.sdk.gitee5j.auth.*;
//import com.gitee.sdk.gitee5j.api.GistsApi;

ApiClient defaultClient = Configuration.getDefaultApiClient();

// Configure OAuth2 access token for authorization: OAuth2
OAuth OAuth2 = (OAuth) defaultClient.getAuthentication("OAuth2");
OAuth2.setAccessToken("YOUR ACCESS TOKEN");

GistsApi apiInstance = new GistsApi();
String id = "id_example"; // String | 代码片段的ID
GistsIdBody body = new GistsIdBody(); // GistsIdBody | 
try {
    CodeForksHistory result = apiInstance.patchGistsId(id, body);
    System.out.println(result);
} catch (ApiException e) {
    System.err.println("Exception when calling GistsApi#patchGistsId");
    e.printStackTrace();
}

Parameters

Name Type Description Notes
id String 代码片段的ID
body GistsIdBody [optional]

Return type

CodeForksHistory

Authorization

OAuth2

HTTP request headers

  • Content-Type: /
  • Accept: application/json

postGists

List<CodeForksHistory> postGists(body)

创建代码片段

创建代码片段

Example

// Import classes:
//import com.gitee.sdk.gitee5j.ApiClient;
//import com.gitee.sdk.gitee5j.ApiException;
//import com.gitee.sdk.gitee5j.Configuration;
//import com.gitee.sdk.gitee5j.auth.*;
//import com.gitee.sdk.gitee5j.api.GistsApi;

ApiClient defaultClient = Configuration.getDefaultApiClient();

// Configure OAuth2 access token for authorization: OAuth2
OAuth OAuth2 = (OAuth) defaultClient.getAuthentication("OAuth2");
OAuth2.setAccessToken("YOUR ACCESS TOKEN");

GistsApi apiInstance = new GistsApi();
GistsBody body = new GistsBody(); // GistsBody | 
try {
    List<CodeForksHistory> result = apiInstance.postGists(body);
    System.out.println(result);
} catch (ApiException e) {
    System.err.println("Exception when calling GistsApi#postGists");
    e.printStackTrace();
}

Parameters

Name Type Description Notes
body GistsBody [optional]

Return type

List<CodeForksHistory>

Authorization

OAuth2

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

postGistsGistIdComments

CodeComment postGistsGistIdComments(gistId, body)

增加代码片段的评论

增加代码片段的评论

Example

// Import classes:
//import com.gitee.sdk.gitee5j.ApiClient;
//import com.gitee.sdk.gitee5j.ApiException;
//import com.gitee.sdk.gitee5j.Configuration;
//import com.gitee.sdk.gitee5j.auth.*;
//import com.gitee.sdk.gitee5j.api.GistsApi;

ApiClient defaultClient = Configuration.getDefaultApiClient();

// Configure OAuth2 access token for authorization: OAuth2
OAuth OAuth2 = (OAuth) defaultClient.getAuthentication("OAuth2");
OAuth2.setAccessToken("YOUR ACCESS TOKEN");

GistsApi apiInstance = new GistsApi();
String gistId = "gistId_example"; // String | 代码片段的ID
GistIdCommentsBody body = new GistIdCommentsBody(); // GistIdCommentsBody | 
try {
    CodeComment result = apiInstance.postGistsGistIdComments(gistId, body);
    System.out.println(result);
} catch (ApiException e) {
    System.err.println("Exception when calling GistsApi#postGistsGistIdComments");
    e.printStackTrace();
}

Parameters

Name Type Description Notes
gistId String 代码片段的ID
body GistIdCommentsBody [optional]

Return type

CodeComment

Authorization

OAuth2

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

postGistsIdForks

postGistsIdForks(id)

Fork代码片段

Fork代码片段

Example

// Import classes:
//import com.gitee.sdk.gitee5j.ApiClient;
//import com.gitee.sdk.gitee5j.ApiException;
//import com.gitee.sdk.gitee5j.Configuration;
//import com.gitee.sdk.gitee5j.auth.*;
//import com.gitee.sdk.gitee5j.api.GistsApi;

ApiClient defaultClient = Configuration.getDefaultApiClient();

// Configure OAuth2 access token for authorization: OAuth2
OAuth OAuth2 = (OAuth) defaultClient.getAuthentication("OAuth2");
OAuth2.setAccessToken("YOUR ACCESS TOKEN");

GistsApi apiInstance = new GistsApi();
String id = "id_example"; // String | 代码片段的ID
try {
    apiInstance.postGistsIdForks(id);
} catch (ApiException e) {
    System.err.println("Exception when calling GistsApi#postGistsIdForks");
    e.printStackTrace();
}

Parameters

Name Type Description Notes
id String 代码片段的ID

Return type

null (empty response body)

Authorization

OAuth2

HTTP request headers

  • Content-Type: Not defined
  • Accept: Not defined

putGistsIdStar

putGistsIdStar(id)

Star代码片段

Star代码片段

Example

// Import classes:
//import com.gitee.sdk.gitee5j.ApiClient;
//import com.gitee.sdk.gitee5j.ApiException;
//import com.gitee.sdk.gitee5j.Configuration;
//import com.gitee.sdk.gitee5j.auth.*;
//import com.gitee.sdk.gitee5j.api.GistsApi;

ApiClient defaultClient = Configuration.getDefaultApiClient();

// Configure OAuth2 access token for authorization: OAuth2
OAuth OAuth2 = (OAuth) defaultClient.getAuthentication("OAuth2");
OAuth2.setAccessToken("YOUR ACCESS TOKEN");

GistsApi apiInstance = new GistsApi();
String id = "id_example"; // String | 代码片段的ID
try {
    apiInstance.putGistsIdStar(id);
} catch (ApiException e) {
    System.err.println("Exception when calling GistsApi#putGistsIdStar");
    e.printStackTrace();
}

Parameters

Name Type Description Notes
id String 代码片段的ID

Return type

null (empty response body)

Authorization

OAuth2

HTTP request headers

  • Content-Type: Not defined
  • Accept: Not defined
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/sdk/gitee5j.git
git@gitee.com:sdk/gitee5j.git
sdk
gitee5j
gitee5j
main

搜索帮助