# 用户页

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /finder/finder_user_page:
    post:
      summary: 用户页
      deprecated: false
      description: ''
      operationId: decorator_finder_finder_user_page_post
      tags:
        - 微信视频号
        - Finder
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/FinderUserPageModel'
            example: ''
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: string
          headers: {}
          x-apifox-name: 成功
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          headers: {}
          x-apifox-name: 参数错误
      security: []
      x-apifox-folder: 微信视频号
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/5649367/apis/api-246739925-run
components:
  schemas:
    FinderUserPageModel:
      title: FinderUserPageModel
      type: object
      properties:
        guid:
          title: Guid
          type: string
          default: ''
        username:
          title: Username
          type: string
          default: ''
        last_buffer:
          title: Last Buffer
          type: string
          default: ''
      x-apifox-orders:
        - guid
        - username
        - last_buffer
      x-apifox-ignore-properties: []
      x-apifox-folder: ''
    HTTPValidationError:
      title: HTTPValidationError
      type: object
      properties:
        detail:
          title: Detail
          type: array
          items:
            $ref: '#/components/schemas/ValidationError'
      x-apifox-orders:
        - detail
      x-apifox-ignore-properties: []
      x-apifox-folder: ''
    ValidationError:
      title: ValidationError
      required:
        - loc
        - msg
        - type
      type: object
      properties:
        loc:
          title: Location
          type: array
          items:
            anyOf:
              - type: string
              - type: integer
        msg:
          title: Message
          type: string
        type:
          title: Error Type
          type: string
      x-apifox-orders:
        - loc
        - msg
        - type
      x-apifox-ignore-properties: []
      x-apifox-folder: ''
  securitySchemes: {}
servers: []
security: []

```
