> ## Documentation Index
> Fetch the complete documentation index at: https://docs.powertokens.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# 获取认证URL

> 获取认证URL



## OpenAPI

````yaml api-reference/zh-Hans/assetLibrary/get-authorize-url.json POST /v1/asset/get-authorize-url
openapi: 3.1.0
info:
  title: 默认模块
  description: ''
  version: 1.0.0
servers:
  - url: https://powertokens.ai/api
    description: 生产环境
security: []
tags:
  - name: interface
paths:
  /v1/asset/get-authorize-url:
    post:
      tags:
        - interface
      summary: 获取认证URL
      description: 获取认证URL
      parameters:
        - name: Authorization
          in: header
          description: 官网API密钥
          required: true
          example: XQujstE5wKqI0xecMJA8lQiq90OHygNIuI1X57zJqltTlOyY
          schema:
            type: string
        - name: User-Agent
          in: header
          description: 注意JAVA在不填写该值会被服务器拦截(eg:powertokensAi)
          required: false
          example: powertokensAi
          schema:
            type: string
        - name: Content-Type
          in: header
          description: application/json
          required: false
          example: application/json
          schema:
            type: string
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties: {}
            examples: {}
        required: true
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: integer
                  data:
                    type: string
                  msg:
                    type: string
                required:
                  - code
                  - data
                  - msg
              example:
                code: 200
                data: >-
                  https://powertokens.ai/auth/real-human-authorization?uuid=9eff6f20-87c0-4f04-a158-30c145126eee
                msg: ''
          headers: {}
      deprecated: false
      security: []

````