# 用于iOS快捷指令的版本更新信息/Version update information for iOS shortcuts

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /api/v1/ios_shortcut/shortcut:
    get:
      summary: 用于iOS快捷指令的版本更新信息/Version update information for iOS shortcuts
      deprecated: false
      description: ''
      operationId: get_shortcut_api_v1_ios_shortcut_shortcut_get
      tags:
        - iOS-Shortcut
        - iOS-Shortcut
      parameters: []
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/iOS_Shortcut'
          headers: {}
          x-apifox-name: OK
      security: []
      x-apifox-folder: iOS-Shortcut
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/4705614/apis/api-190419378-run
components:
  schemas:
    iOS_Shortcut:
      properties:
        version:
          type: string
          title: Version
        update:
          type: string
          title: Update
        link:
          type: string
          title: Link
        link_en:
          type: string
          title: Link En
        note:
          type: string
          title: Note
        note_en:
          type: string
          title: Note En
      type: object
      required:
        - version
        - update
        - link
        - link_en
        - note
        - note_en
      title: iOS_Shortcut
      x-apifox-orders:
        - version
        - update
        - link
        - link_en
        - note
        - note_en
      x-apifox-ignore-properties: []
      x-apifox-folder: ''
  securitySchemes:
    HTTPBearer:
      type: bearer
      description: >
        ----

        #### API Token Introduction:

        ##### Method 1: Use API Token in the Request Header (Recommended)

        - **Header**: `Authorization`

        - **Format**: `Bearer {token}`

        - **Example**: `{"Authorization": "Bearer your_token"}`

        - **Swagger UI**: Click on the `Authorize` button in the upper right
        corner of the page to enter the API token directly without the `Bearer`
        keyword.


        ##### Method 2: Use API Token in the Cookie (Not Recommended, Use Only
        When Method 1 is Unavailable)

        - **Cookie**: `Authorization`

        - **Format**: `Bearer {token}`

        - **Example**: `Authorization=Bearer your_token`


        #### Get API Token:

        1. Register and log in to your account on the TikHub website.

        2. Go to the user center, click on the API token menu, and create an API
        token.

        3. Copy and use the API token in the request header.

        4. Keep your API token confidential and use it only in the request
        header.


        ----


        #### API令牌简介:

        ##### 方法一：在请求头中使用API令牌（推荐）

        - **请求头**: `Authorization`

        - **格式**: `Bearer {token}`

        - **示例**: `{"Authorization": "Bearer your_token"}`

        - **Swagger UI**: 点击页面右上角的`Authorize`按钮，直接输入API令牌，不需要`Bearer`关键字。


        ##### 方法二：在Cookie中使用API令牌（不推荐，仅在无法使用方法一时使用）

        - **Cookie**: `Authorization`

        - **格式**: `Bearer {token}`

        - **示例**: `Authorization=Bearer your_token`


        #### 获取API令牌:

        1. 在TikHub网站注册并登录账户。

        2. 进入用户中心，点击API令牌菜单，创建API令牌。

        3. 复制并在请求头中使用API令牌。

        4. 保密您的API令牌，仅在请求头中使用。
      scheme: bearer
servers:
  - url: https://api.tikhub.io
    description: Production Environment
security: []

```
