> 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="/files/a179d7fe7e7064f4597e563ace75f9125d59e33a" alt=""><figcaption></figcaption></figure>

#### 2. 输入主要功能

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

<figure><img src="/files/77d30c97e60d1408f327ea73617400f010e6f088" 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.
