mirror of
https://github.com/thegeneralist01/twitter-openapi
synced 2026-01-11 23:50:26 +01:00
add builder
Signed-off-by: ふぁ <yuki@yuki0311.com>
This commit is contained in:
parent
9052b3a16a
commit
26908878c1
31 changed files with 2886 additions and 1549 deletions
94
src/openapi/openapi-3.0.yaml
Normal file
94
src/openapi/openapi-3.0.yaml
Normal file
|
|
@ -0,0 +1,94 @@
|
|||
openapi: 3.0.3
|
||||
info:
|
||||
title: Twitter OpenAPI
|
||||
description: |-
|
||||
Twitter OpenAPI(Swagger) specification
|
||||
termsOfService: https://github.com/fa0311
|
||||
contact:
|
||||
email: yuki@yuki0311.com
|
||||
license:
|
||||
name: GNU Affero General Public License v3.
|
||||
url: https://raw.githubusercontent.com/fa0311/twitter-openapi/main/LICENSE.txt
|
||||
version: 0.0.1
|
||||
servers:
|
||||
- url: https://twitter.com/i/api/graphql
|
||||
|
||||
paths: {}
|
||||
components:
|
||||
schemas: {}
|
||||
|
||||
securitySchemes:
|
||||
BearerAuth:
|
||||
type: http
|
||||
scheme: bearer
|
||||
description: "AAAAAAAAAAAAAAAAAAAAANRILgAAAAAAnNwIzUejRCOuH5E6I8xnZz4puTs%3D1Zv7ttfk8LF81IUq16cHjhLTvJu4FA33AGWWjCpTnA"
|
||||
|
||||
CsrfToken:
|
||||
type: apiKey
|
||||
in: header
|
||||
name: x-csrf-token
|
||||
|
||||
ActiveUser:
|
||||
type: apiKey
|
||||
in: header
|
||||
name: x-twitter-active-user
|
||||
description: "yes"
|
||||
|
||||
AuthType:
|
||||
type: apiKey
|
||||
in: header
|
||||
name: x-twitter-auth-type
|
||||
description: "OAuth2Session"
|
||||
|
||||
ClientLanguage:
|
||||
type: apiKey
|
||||
in: header
|
||||
name: x-twitter-client-language
|
||||
description: "en"
|
||||
|
||||
CookieAuthToken:
|
||||
type: apiKey
|
||||
in: cookie
|
||||
name: auth_token
|
||||
|
||||
CookieCt0:
|
||||
type: apiKey
|
||||
in: cookie
|
||||
name: ct0
|
||||
|
||||
tags:
|
||||
- name: timeline
|
||||
description: timeline
|
||||
- name: tweet
|
||||
description: tweet
|
||||
- name: user
|
||||
description: user
|
||||
- name: follow
|
||||
description: follow
|
||||
- name: search
|
||||
description: search
|
||||
- name: dm
|
||||
description: dm
|
||||
- name: settings
|
||||
description: settings
|
||||
- name: notify
|
||||
description: notify
|
||||
|
||||
# ===
|
||||
- name: login required
|
||||
description: login session required
|
||||
- name: graphql
|
||||
description: graphql
|
||||
- name: login-flow
|
||||
description: login flow
|
||||
- name: report-flow
|
||||
description: report flow
|
||||
|
||||
security:
|
||||
- bearerAuth: []
|
||||
- CsrfToken: []
|
||||
- ActiveUser: []
|
||||
- AuthType: []
|
||||
- ClientLanguage: []
|
||||
- CookieAuthToken: []
|
||||
- CookieCt0: []
|
||||
Loading…
Add table
Add a link
Reference in a new issue