mirror of
https://github.com/thegeneralist01/twitter-openapi
synced 2026-01-12 08:00:27 +01:00
commit
591bddfa47
6 changed files with 353 additions and 2 deletions
|
|
@ -20,6 +20,22 @@ paths:
|
|||
tags:
|
||||
- "tweet"
|
||||
|
||||
/graphql/{pathQueryId}/TweetResultByRestId:
|
||||
get:
|
||||
operationId: getTweetResultByRestId
|
||||
description: get TweetResultByRestId
|
||||
responses:
|
||||
"200":
|
||||
description: Successful operation
|
||||
content:
|
||||
application/json:
|
||||
schema:
|
||||
oneOf:
|
||||
- $ref: "#/components/schemas/TweetResultByRestIdResponse"
|
||||
- $ref: "./../schemas/error.yaml#/components/schemas/Errors"
|
||||
# tags:
|
||||
# - "tweet"
|
||||
|
||||
/graphql/{pathQueryId}/Favoriters:
|
||||
get:
|
||||
operationId: getFavoriters
|
||||
|
|
@ -68,6 +84,20 @@ components:
|
|||
threaded_conversation_with_injections_v2:
|
||||
$ref: "./../schemas/timeline.yaml#/components/schemas/Timeline"
|
||||
|
||||
TweetResultByRestIdResponse:
|
||||
required:
|
||||
- "data"
|
||||
properties:
|
||||
data:
|
||||
$ref: "#/components/schemas/TweetResultByRestIdData"
|
||||
|
||||
TweetResultByRestIdData:
|
||||
required:
|
||||
- "tweetResult"
|
||||
properties:
|
||||
tweetResult:
|
||||
$ref: "./../schemas/content.yaml#/components/schemas/ItemResult"
|
||||
|
||||
TweetFavoritersResponse:
|
||||
required:
|
||||
- "data"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue