> For the complete documentation index, see [llms.txt](https://developers-apps-in-toss.toss.im/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developers-apps-in-toss.toss.im/guide/zh/operation/function.md).

# 注册核心功能

核心功能是让用户在非游戏迷你应用详情页中可以直接进入特定功能的功能。不经过首页，直接跳转到想要的具体功能。

<figure><img src="https://4036587353-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fsueslih0uoBKTKHdmDNt%2Fuploads%2FN3pIHX8o5UGrsc93anOL%2Fimage.png?alt=media&#x26;token=6db8f8b2-504e-4329-98fa-65549eba00d2" alt=""><figcaption></figcaption></figure>

***

### 在控制台中注册

#### 1. 进入应用发布菜单的“主要功能”标签

<figure><img src="https://1415110023-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F8pQgXiR5QAzduV54W8Om%2Fuploads%2FmYI7X5WRhvRsoEApEey7%2F%E1%84%80%E1%85%A5%E1%86%B7%E1%84%90%E1%85%A9%20%E1%84%8C%E1%85%AE%E1%86%BC%2035.png?alt=media&amp;token=5dbfade3-0ba0-4d4b-81f7-5e47826227e2" alt=""><figcaption></figcaption></figure>

#### 2. 填写主要功能

主要功能最多可注册 3 个。

<figure><img src="https://1415110023-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F8pQgXiR5QAzduV54W8Om%2Fuploads%2FpOFz0iZMRz7H9QF6GWx2%2F%F0%9F%9F%A3%20Desktop_Modal%20(New%20Color)%2080.png?alt=media&amp;token=362879bc-bcb2-444d-b705-8d54ca4f381d" alt=""><figcaption></figcaption></figure>

**主要功能需要同时输入“韩文功能名称”和“英文功能名称”。**

* **韩文功能名称：** 10个字符以内，特殊符号 `:` `.` 仅允许，不能使用表情符号
* **英文功能名称：** 15个字符以内，仅首字母大写，特殊符号 `:` `.` 仅允许，不能使用表情符号

功能名称请根据 Toss UX 文案规范，写成“\~하기”或名词形式。

* 例如）“查看转账记录”、“海外汇款”、“查看旅行预订记录”
* 请写得能体现迷你应用服务的功能。如果只写成“预约确认”“记录查看”“去看看”“观看”等，用户很难判断这是哪个服务的功能。

**请填写用户可直接访问的功能名称和要跳转的 `intoss://pages` 地址。**

* 如果无法正常访问主要功能 URL，可能会被退回。
* 可以设置查询参数。

全部填写后，请点击“请求审核”。审核可能需要 1～2 个工作日。

***

### 查看主要功能信息

审核结果可在“主要功能”标签中确认。

* 可在“主要功能”标签中单独注册或修改主要功能。
* 若仅单独新增·修改主要功能，则只会审核主要功能，可能需要 1～2 个工作日。
* 即使是在已上线运营的迷你应用中新增或修改，也请务必确认能正常访问主要功能。

<figure><img src="https://4036587353-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fsueslih0uoBKTKHdmDNt%2Fuploads%2FniQbAEzUpb1jG5p7V2yl%2Fimage.png?alt=media&#x26;token=699de974-b97c-4fb4-b5fc-27c90b7caa9b" alt=""><figcaption></figcaption></figure>

***

### 各开发环境的功能配置

#### Webview

将路由路径映射到功能地址。

```
<Route path="/search" element={<SearchPage />} />
```

将功能地址 `intoss://{appName}/search`输入后即可跳转到对应页面。

#### React Native

使用与 Next.js 类似的基于文件的路由。

`/pages/search.tsx` → `/search` 路径映射 → `intoss://{appName}/search`进入时渲染

详细结构请参考 [理解基于文件的路由](https://appsintoss.gitbook.io/appsintoss-docs/documentation/react-native/screen-navigation/navigation)。


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://developers-apps-in-toss.toss.im/guide/zh/operation/function.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
