# 社交对象

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths: {}
components:
  schemas:
    社交对象:
      type: object
      properties:
        id:
          type: string
          title: 用户 ID
          description: 用户唯一标识符
        username:
          type: string
          title: 用户名
        avatar_url:
          type: string
          title: 头像
          description: 图片链接，可以是本地也可以是云存储
      x-apifox-orders:
        - id
        - username
        - avatar_url
      x-apifox-refs: {}
      required:
        - id
        - username
        - avatar_url
      x-apifox-folder: ''
  securitySchemes: {}
servers:
  - url: http://localhost:10001
    description: 开发环境
  - url: localhost:8888
    description: 测试环境
  - url: https://14efdb6874148af54dd6c98f749a9412-app.1024paas.com/douyin
    description: 正式环境
security: []

```
