mirror of
https://github.com/thegeneralist01/twitter-openapi
synced 2026-01-11 23:50:26 +01:00
build
Signed-off-by: ふぁ <yuki@yuki0311.com>
This commit is contained in:
parent
6fbfc323b3
commit
3dbdd17fbb
74 changed files with 16 additions and 9401 deletions
105
dist/compatible/paths/bookmarks.yaml
vendored
Normal file
105
dist/compatible/paths/bookmarks.yaml
vendored
Normal file
|
|
@ -0,0 +1,105 @@
|
|||
components:
|
||||
schemas:
|
||||
BookmarksResponse:
|
||||
properties:
|
||||
data:
|
||||
$ref: '#/components/schemas/BookmarksResponseData'
|
||||
required:
|
||||
- data
|
||||
BookmarksResponseData:
|
||||
properties:
|
||||
bookmark_timeline_v2:
|
||||
$ref: '#/components/schemas/BookmarksTimeline'
|
||||
required:
|
||||
- bookmark_timeline_v2
|
||||
BookmarksTimeline:
|
||||
properties:
|
||||
timeline:
|
||||
$ref: ./../schemas/timeline.yaml#/components/schemas/Timeline
|
||||
required:
|
||||
- timeline
|
||||
info:
|
||||
title: Twitter OpenAPI
|
||||
version: 0.0.1
|
||||
openapi: 3.0.3
|
||||
paths:
|
||||
/graphql/{pathQueryId}/Bookmarks:
|
||||
get:
|
||||
description: get bookmarks
|
||||
operationId: getBookmarks
|
||||
parameters:
|
||||
- in: path
|
||||
name: pathQueryId
|
||||
required: true
|
||||
schema:
|
||||
default: tmd4ifV8RHltzn8ymGg1aw
|
||||
example: tmd4ifV8RHltzn8ymGg1aw
|
||||
type: string
|
||||
- in: query
|
||||
name: variables
|
||||
required: true
|
||||
schema:
|
||||
default: '{"count": 20, "includePromotedContent": true}'
|
||||
example: '{"count": 20, "includePromotedContent": true}'
|
||||
type: string
|
||||
- in: query
|
||||
name: features
|
||||
required: true
|
||||
schema:
|
||||
default: '{"graphql_timeline_v2_bookmark_timeline": true, "blue_business_profile_image_shape_enabled":
|
||||
true, "responsive_web_graphql_exclude_directive_enabled": true, "verified_phone_label_enabled":
|
||||
false, "responsive_web_graphql_timeline_navigation_enabled": true, "responsive_web_graphql_skip_user_profile_image_extensions_enabled":
|
||||
false, "tweetypie_unmention_optimization_enabled": true, "vibe_api_enabled":
|
||||
true, "responsive_web_edit_tweet_api_enabled": true, "graphql_is_translatable_rweb_tweet_is_translatable_enabled":
|
||||
true, "view_counts_everywhere_api_enabled": true, "longform_notetweets_consumption_enabled":
|
||||
true, "tweet_awards_web_tipping_enabled": false, "freedom_of_speech_not_reach_fetch_enabled":
|
||||
false, "standardized_nudges_misinfo": true, "tweet_with_visibility_results_prefer_gql_limited_actions_policy_enabled":
|
||||
false, "interactive_text_enabled": true, "responsive_web_text_conversations_enabled":
|
||||
false, "longform_notetweets_rich_text_read_enabled": true, "responsive_web_enhance_cards_enabled":
|
||||
false}'
|
||||
example: '{"graphql_timeline_v2_bookmark_timeline": true, "blue_business_profile_image_shape_enabled":
|
||||
true, "responsive_web_graphql_exclude_directive_enabled": true, "verified_phone_label_enabled":
|
||||
false, "responsive_web_graphql_timeline_navigation_enabled": true, "responsive_web_graphql_skip_user_profile_image_extensions_enabled":
|
||||
false, "tweetypie_unmention_optimization_enabled": true, "vibe_api_enabled":
|
||||
true, "responsive_web_edit_tweet_api_enabled": true, "graphql_is_translatable_rweb_tweet_is_translatable_enabled":
|
||||
true, "view_counts_everywhere_api_enabled": true, "longform_notetweets_consumption_enabled":
|
||||
true, "tweet_awards_web_tipping_enabled": false, "freedom_of_speech_not_reach_fetch_enabled":
|
||||
false, "standardized_nudges_misinfo": true, "tweet_with_visibility_results_prefer_gql_limited_actions_policy_enabled":
|
||||
false, "interactive_text_enabled": true, "responsive_web_text_conversations_enabled":
|
||||
false, "longform_notetweets_rich_text_read_enabled": true, "responsive_web_enhance_cards_enabled":
|
||||
false}'
|
||||
type: string
|
||||
responses:
|
||||
'200':
|
||||
content:
|
||||
application/json:
|
||||
schema:
|
||||
$ref: '#/components/schemas/BookmarksResponse'
|
||||
description: Successful operation
|
||||
headers:
|
||||
x-connection-hash:
|
||||
schema:
|
||||
type: string
|
||||
x-rate-limit-limit:
|
||||
schema:
|
||||
type: integer
|
||||
x-rate-limit-remaining:
|
||||
schema:
|
||||
type: integer
|
||||
x-rate-limit-reset:
|
||||
schema:
|
||||
type: integer
|
||||
x-response-time:
|
||||
schema:
|
||||
type: integer
|
||||
x-tfe-preserve-body:
|
||||
schema:
|
||||
type: boolean
|
||||
x-transaction-id:
|
||||
schema:
|
||||
type: string
|
||||
x-twitter-response-tags:
|
||||
schema:
|
||||
type: string
|
||||
tags:
|
||||
- tweet
|
||||
204
dist/compatible/paths/follow.yaml
vendored
Normal file
204
dist/compatible/paths/follow.yaml
vendored
Normal file
|
|
@ -0,0 +1,204 @@
|
|||
components:
|
||||
schemas:
|
||||
FollowResponse:
|
||||
properties:
|
||||
data:
|
||||
$ref: '#/components/schemas/FollowResponseData'
|
||||
required:
|
||||
- data
|
||||
FollowResponseData:
|
||||
properties:
|
||||
user:
|
||||
$ref: '#/components/schemas/FollowResponseUser'
|
||||
required:
|
||||
- user
|
||||
FollowResponseResult:
|
||||
properties:
|
||||
__typename:
|
||||
$ref: ./../schemas/typename.yaml#/components/schemas/TypeName
|
||||
timeline:
|
||||
$ref: '#/components/schemas/FollowTimeline'
|
||||
required:
|
||||
- __typename
|
||||
- timeline
|
||||
FollowResponseUser:
|
||||
properties:
|
||||
result:
|
||||
$ref: '#/components/schemas/FollowResponseResult'
|
||||
required:
|
||||
- result
|
||||
FollowTimeline:
|
||||
properties:
|
||||
timeline:
|
||||
$ref: ./../schemas/timeline.yaml#/components/schemas/Timeline
|
||||
required:
|
||||
- timeline
|
||||
info:
|
||||
title: Twitter OpenAPI
|
||||
version: 0.0.1
|
||||
openapi: 3.0.3
|
||||
paths:
|
||||
/graphql/{pathQueryId}/Followers:
|
||||
get:
|
||||
description: get user list of followers
|
||||
operationId: getFollowers
|
||||
parameters:
|
||||
- in: path
|
||||
name: pathQueryId
|
||||
required: true
|
||||
schema:
|
||||
default: djdTXDIk2qhd4OStqlUFeQ
|
||||
example: djdTXDIk2qhd4OStqlUFeQ
|
||||
type: string
|
||||
- in: query
|
||||
name: variables
|
||||
required: true
|
||||
schema:
|
||||
default: '{"userId": "44196397", "count": 20, "includePromotedContent":
|
||||
false}'
|
||||
example: '{"userId": "44196397", "count": 20, "includePromotedContent":
|
||||
false}'
|
||||
type: string
|
||||
- in: query
|
||||
name: features
|
||||
required: true
|
||||
schema:
|
||||
default: '{"blue_business_profile_image_shape_enabled": true, "responsive_web_graphql_exclude_directive_enabled":
|
||||
true, "verified_phone_label_enabled": false, "responsive_web_graphql_timeline_navigation_enabled":
|
||||
true, "responsive_web_graphql_skip_user_profile_image_extensions_enabled":
|
||||
false, "tweetypie_unmention_optimization_enabled": true, "vibe_api_enabled":
|
||||
true, "responsive_web_edit_tweet_api_enabled": true, "graphql_is_translatable_rweb_tweet_is_translatable_enabled":
|
||||
true, "view_counts_everywhere_api_enabled": true, "longform_notetweets_consumption_enabled":
|
||||
true, "tweet_awards_web_tipping_enabled": false, "freedom_of_speech_not_reach_fetch_enabled":
|
||||
false, "standardized_nudges_misinfo": true, "tweet_with_visibility_results_prefer_gql_limited_actions_policy_enabled":
|
||||
false, "interactive_text_enabled": true, "responsive_web_text_conversations_enabled":
|
||||
false, "longform_notetweets_rich_text_read_enabled": true, "responsive_web_enhance_cards_enabled":
|
||||
false}'
|
||||
example: '{"blue_business_profile_image_shape_enabled": true, "responsive_web_graphql_exclude_directive_enabled":
|
||||
true, "verified_phone_label_enabled": false, "responsive_web_graphql_timeline_navigation_enabled":
|
||||
true, "responsive_web_graphql_skip_user_profile_image_extensions_enabled":
|
||||
false, "tweetypie_unmention_optimization_enabled": true, "vibe_api_enabled":
|
||||
true, "responsive_web_edit_tweet_api_enabled": true, "graphql_is_translatable_rweb_tweet_is_translatable_enabled":
|
||||
true, "view_counts_everywhere_api_enabled": true, "longform_notetweets_consumption_enabled":
|
||||
true, "tweet_awards_web_tipping_enabled": false, "freedom_of_speech_not_reach_fetch_enabled":
|
||||
false, "standardized_nudges_misinfo": true, "tweet_with_visibility_results_prefer_gql_limited_actions_policy_enabled":
|
||||
false, "interactive_text_enabled": true, "responsive_web_text_conversations_enabled":
|
||||
false, "longform_notetweets_rich_text_read_enabled": true, "responsive_web_enhance_cards_enabled":
|
||||
false}'
|
||||
type: string
|
||||
responses:
|
||||
'200':
|
||||
content:
|
||||
application/json:
|
||||
schema:
|
||||
$ref: '#/components/schemas/FollowResponse'
|
||||
description: Successful operation
|
||||
headers:
|
||||
x-connection-hash:
|
||||
schema:
|
||||
type: string
|
||||
x-rate-limit-limit:
|
||||
schema:
|
||||
type: integer
|
||||
x-rate-limit-remaining:
|
||||
schema:
|
||||
type: integer
|
||||
x-rate-limit-reset:
|
||||
schema:
|
||||
type: integer
|
||||
x-response-time:
|
||||
schema:
|
||||
type: integer
|
||||
x-tfe-preserve-body:
|
||||
schema:
|
||||
type: boolean
|
||||
x-transaction-id:
|
||||
schema:
|
||||
type: string
|
||||
x-twitter-response-tags:
|
||||
schema:
|
||||
type: string
|
||||
tags:
|
||||
- user-list
|
||||
/graphql/{pathQueryId}/Following:
|
||||
get:
|
||||
description: get user list of following
|
||||
operationId: getFollowing
|
||||
parameters:
|
||||
- in: path
|
||||
name: pathQueryId
|
||||
required: true
|
||||
schema:
|
||||
default: IWP6Zt14sARO29lJT35bBw
|
||||
example: IWP6Zt14sARO29lJT35bBw
|
||||
type: string
|
||||
- in: query
|
||||
name: variables
|
||||
required: true
|
||||
schema:
|
||||
default: '{"userId": "44196397", "count": 20, "includePromotedContent":
|
||||
false}'
|
||||
example: '{"userId": "44196397", "count": 20, "includePromotedContent":
|
||||
false}'
|
||||
type: string
|
||||
- in: query
|
||||
name: features
|
||||
required: true
|
||||
schema:
|
||||
default: '{"blue_business_profile_image_shape_enabled": true, "responsive_web_graphql_exclude_directive_enabled":
|
||||
true, "verified_phone_label_enabled": false, "responsive_web_graphql_timeline_navigation_enabled":
|
||||
true, "responsive_web_graphql_skip_user_profile_image_extensions_enabled":
|
||||
false, "tweetypie_unmention_optimization_enabled": true, "vibe_api_enabled":
|
||||
true, "responsive_web_edit_tweet_api_enabled": true, "graphql_is_translatable_rweb_tweet_is_translatable_enabled":
|
||||
true, "view_counts_everywhere_api_enabled": true, "longform_notetweets_consumption_enabled":
|
||||
true, "tweet_awards_web_tipping_enabled": false, "freedom_of_speech_not_reach_fetch_enabled":
|
||||
false, "standardized_nudges_misinfo": true, "tweet_with_visibility_results_prefer_gql_limited_actions_policy_enabled":
|
||||
false, "interactive_text_enabled": true, "responsive_web_text_conversations_enabled":
|
||||
false, "longform_notetweets_rich_text_read_enabled": true, "responsive_web_enhance_cards_enabled":
|
||||
false}'
|
||||
example: '{"blue_business_profile_image_shape_enabled": true, "responsive_web_graphql_exclude_directive_enabled":
|
||||
true, "verified_phone_label_enabled": false, "responsive_web_graphql_timeline_navigation_enabled":
|
||||
true, "responsive_web_graphql_skip_user_profile_image_extensions_enabled":
|
||||
false, "tweetypie_unmention_optimization_enabled": true, "vibe_api_enabled":
|
||||
true, "responsive_web_edit_tweet_api_enabled": true, "graphql_is_translatable_rweb_tweet_is_translatable_enabled":
|
||||
true, "view_counts_everywhere_api_enabled": true, "longform_notetweets_consumption_enabled":
|
||||
true, "tweet_awards_web_tipping_enabled": false, "freedom_of_speech_not_reach_fetch_enabled":
|
||||
false, "standardized_nudges_misinfo": true, "tweet_with_visibility_results_prefer_gql_limited_actions_policy_enabled":
|
||||
false, "interactive_text_enabled": true, "responsive_web_text_conversations_enabled":
|
||||
false, "longform_notetweets_rich_text_read_enabled": true, "responsive_web_enhance_cards_enabled":
|
||||
false}'
|
||||
type: string
|
||||
responses:
|
||||
'200':
|
||||
content:
|
||||
application/json:
|
||||
schema:
|
||||
$ref: '#/components/schemas/FollowResponse'
|
||||
description: Successful operation
|
||||
headers:
|
||||
x-connection-hash:
|
||||
schema:
|
||||
type: string
|
||||
x-rate-limit-limit:
|
||||
schema:
|
||||
type: integer
|
||||
x-rate-limit-remaining:
|
||||
schema:
|
||||
type: integer
|
||||
x-rate-limit-reset:
|
||||
schema:
|
||||
type: integer
|
||||
x-response-time:
|
||||
schema:
|
||||
type: integer
|
||||
x-tfe-preserve-body:
|
||||
schema:
|
||||
type: boolean
|
||||
x-transaction-id:
|
||||
schema:
|
||||
type: string
|
||||
x-twitter-response-tags:
|
||||
schema:
|
||||
type: string
|
||||
tags:
|
||||
- user-list
|
||||
96
dist/compatible/paths/other.yaml
vendored
Normal file
96
dist/compatible/paths/other.yaml
vendored
Normal file
|
|
@ -0,0 +1,96 @@
|
|||
components:
|
||||
schemas:
|
||||
CommunitiesActions:
|
||||
properties:
|
||||
create:
|
||||
type: boolean
|
||||
required:
|
||||
- create
|
||||
type: object
|
||||
OneFactorLoginEligibility:
|
||||
properties:
|
||||
fetchStatus:
|
||||
type: string
|
||||
required:
|
||||
- fetchStatus
|
||||
type: object
|
||||
OtherResponse:
|
||||
properties:
|
||||
Session:
|
||||
$ref: '#/components/schemas/Session'
|
||||
type: object
|
||||
Session:
|
||||
properties:
|
||||
SsoInitTokens:
|
||||
type: object
|
||||
communitiesActions:
|
||||
$ref: '#/components/schemas/CommunitiesActions'
|
||||
country:
|
||||
pattern: ^[A-Z]{2}$
|
||||
type: string
|
||||
guestId:
|
||||
pattern: ^[0-9]+$
|
||||
type: string
|
||||
hasCommunityMemberships:
|
||||
type: boolean
|
||||
isActiveCreator:
|
||||
type: boolean
|
||||
isRestrictedSession:
|
||||
type: boolean
|
||||
isSuperFollowSubscriber:
|
||||
type: boolean
|
||||
language:
|
||||
pattern: ^[a-z]{2}$
|
||||
type: string
|
||||
oneFactorLoginEligibility:
|
||||
$ref: '#/components/schemas/OneFactorLoginEligibility'
|
||||
superFollowersCount:
|
||||
type: integer
|
||||
superFollowsApplicationStatus:
|
||||
type: string
|
||||
userFeatures:
|
||||
$ref: '#/components/schemas/UserFeatures'
|
||||
user_id:
|
||||
pattern: ^[0-9]+$
|
||||
type: string
|
||||
required:
|
||||
- country
|
||||
- communitiesActions
|
||||
- isActiveCreator
|
||||
- isRestrictedSession
|
||||
- guestId
|
||||
- hasCommunityMemberships
|
||||
- language
|
||||
- oneFactorLoginEligibility
|
||||
- ssoInitTokens
|
||||
- superFollowersCount
|
||||
- superFollowsApplicationStatus
|
||||
- user_id
|
||||
- userFeatures
|
||||
- isSuperFollowSubscriber
|
||||
type: object
|
||||
UserFeatures:
|
||||
properties:
|
||||
mediatool_studio_library:
|
||||
type: boolean
|
||||
required:
|
||||
- mediatool_studio_library
|
||||
type: object
|
||||
info:
|
||||
title: Twitter OpenAPI
|
||||
version: 0.0.1
|
||||
openapi: 3.0.3
|
||||
paths:
|
||||
/other:
|
||||
get:
|
||||
description: This is not an actual endpoint
|
||||
operationId: other
|
||||
responses:
|
||||
'200':
|
||||
content:
|
||||
application/json:
|
||||
schema:
|
||||
$ref: '#/components/schemas/OtherResponse'
|
||||
description: Successful operation
|
||||
tags:
|
||||
- other
|
||||
702
dist/compatible/paths/post.yaml
vendored
Normal file
702
dist/compatible/paths/post.yaml
vendored
Normal file
|
|
@ -0,0 +1,702 @@
|
|||
components:
|
||||
schemas:
|
||||
CreateRetweet:
|
||||
properties:
|
||||
result:
|
||||
$ref: '#/components/schemas/Retweet'
|
||||
required:
|
||||
- result
|
||||
CreateRetweetResponse:
|
||||
properties:
|
||||
data:
|
||||
$ref: '#/components/schemas/CreateRetweetResponseData'
|
||||
required:
|
||||
- data
|
||||
CreateRetweetResponseData:
|
||||
properties:
|
||||
create_retweet:
|
||||
$ref: '#/components/schemas/CreateRetweetResponseResult'
|
||||
required:
|
||||
- create_retweet
|
||||
CreateRetweetResponseResult:
|
||||
properties:
|
||||
retweet_results:
|
||||
$ref: '#/components/schemas/CreateRetweet'
|
||||
required:
|
||||
- retweet_results
|
||||
CreateTweet:
|
||||
properties:
|
||||
result:
|
||||
$ref: ./../schemas/tweet.yaml#/components/schemas/Tweet
|
||||
required:
|
||||
- result
|
||||
CreateTweetResponse:
|
||||
properties:
|
||||
data:
|
||||
$ref: '#/components/schemas/CreateTweetResponseData'
|
||||
required:
|
||||
- data
|
||||
CreateTweetResponseData:
|
||||
properties:
|
||||
create_tweet:
|
||||
$ref: '#/components/schemas/CreateTweetResponseResult'
|
||||
required:
|
||||
- create_tweet
|
||||
CreateTweetResponseResult:
|
||||
properties:
|
||||
tweet_results:
|
||||
$ref: '#/components/schemas/CreateTweet'
|
||||
required:
|
||||
- tweet_results
|
||||
DeleteRetweet:
|
||||
properties:
|
||||
result:
|
||||
items:
|
||||
$ref: '#/components/schemas/Retweet'
|
||||
type: object
|
||||
required:
|
||||
- result
|
||||
DeleteRetweetResponse:
|
||||
properties:
|
||||
data:
|
||||
$ref: '#/components/schemas/DeleteRetweetResponseData'
|
||||
required:
|
||||
- data
|
||||
DeleteRetweetResponseData:
|
||||
properties:
|
||||
create_retweet:
|
||||
$ref: '#/components/schemas/CreateRetweetResponseResult'
|
||||
required:
|
||||
- unretweet
|
||||
DeleteRetweetResponseResult:
|
||||
properties:
|
||||
retweet_results:
|
||||
$ref: '#/components/schemas/DeleteRetweet'
|
||||
required:
|
||||
- source_tweet_results
|
||||
DeleteTweetResponse:
|
||||
properties:
|
||||
data:
|
||||
$ref: '#/components/schemas/DeleteTweetResponseData'
|
||||
required:
|
||||
- data
|
||||
DeleteTweetResponseData:
|
||||
properties:
|
||||
delete_retweet:
|
||||
$ref: '#/components/schemas/DeleteTweetResponseResult'
|
||||
required:
|
||||
- delete_tweet
|
||||
DeleteTweetResponseResult:
|
||||
properties:
|
||||
tweet_results:
|
||||
type: object
|
||||
required:
|
||||
- tweet_results
|
||||
FavoriteTweet:
|
||||
properties:
|
||||
favorite_tweet:
|
||||
type: string
|
||||
required:
|
||||
- favorite_tweet
|
||||
FavoriteTweetResponseData:
|
||||
properties:
|
||||
data:
|
||||
$ref: '#/components/schemas/FavoriteTweet'
|
||||
required:
|
||||
- data
|
||||
Retweet:
|
||||
properties:
|
||||
legacy:
|
||||
properties:
|
||||
full_text:
|
||||
type: string
|
||||
required:
|
||||
- full_text
|
||||
type: object
|
||||
rest_id:
|
||||
pattern: ^[0-9]+$
|
||||
type: string
|
||||
required:
|
||||
- rest_id
|
||||
- legacy
|
||||
UnfavoriteTweet:
|
||||
properties:
|
||||
unfavorite_tweet:
|
||||
type: string
|
||||
required:
|
||||
- unfavorite_tweet
|
||||
UnfavoriteTweetResponseData:
|
||||
properties:
|
||||
data:
|
||||
$ref: '#/components/schemas/UnfavoriteTweet'
|
||||
required:
|
||||
- data
|
||||
info:
|
||||
title: Twitter OpenAPI
|
||||
version: 0.0.1
|
||||
openapi: 3.0.3
|
||||
paths:
|
||||
/graphql/{pathQueryId}/CreateRetweet:
|
||||
post:
|
||||
description: create Retweet
|
||||
operationId: postCreateRetweet
|
||||
parameters:
|
||||
- in: path
|
||||
name: pathQueryId
|
||||
required: true
|
||||
schema:
|
||||
default: ojPdsZsimiJrUGLR1sjUtA
|
||||
example: ojPdsZsimiJrUGLR1sjUtA
|
||||
type: string
|
||||
requestBody:
|
||||
content:
|
||||
application/json:
|
||||
schema:
|
||||
properties:
|
||||
queryId:
|
||||
default: ojPdsZsimiJrUGLR1sjUtA
|
||||
example: ojPdsZsimiJrUGLR1sjUtA
|
||||
type: string
|
||||
variables:
|
||||
properties:
|
||||
dark_request:
|
||||
default: false
|
||||
example: false
|
||||
type: boolean
|
||||
tweet_id:
|
||||
default: '1349129669258448897'
|
||||
example: '1349129669258448897'
|
||||
type: string
|
||||
required:
|
||||
- tweet_id
|
||||
- dark_request
|
||||
type: object
|
||||
required:
|
||||
- queryId
|
||||
- variables
|
||||
description: body
|
||||
required: true
|
||||
responses:
|
||||
'200':
|
||||
content:
|
||||
application/json:
|
||||
schema:
|
||||
$ref: '#/components/schemas/CreateRetweetResponse'
|
||||
description: Successful operation
|
||||
headers:
|
||||
x-connection-hash:
|
||||
schema:
|
||||
type: string
|
||||
x-rate-limit-limit:
|
||||
schema:
|
||||
type: integer
|
||||
x-rate-limit-remaining:
|
||||
schema:
|
||||
type: integer
|
||||
x-rate-limit-reset:
|
||||
schema:
|
||||
type: integer
|
||||
x-response-time:
|
||||
schema:
|
||||
type: integer
|
||||
x-tfe-preserve-body:
|
||||
schema:
|
||||
type: boolean
|
||||
x-transaction-id:
|
||||
schema:
|
||||
type: string
|
||||
x-twitter-response-tags:
|
||||
schema:
|
||||
type: string
|
||||
tags:
|
||||
- post
|
||||
/graphql/{pathQueryId}/CreateTweet:
|
||||
post:
|
||||
description: create Tweet
|
||||
operationId: postCreateTweet
|
||||
parameters:
|
||||
- in: path
|
||||
name: pathQueryId
|
||||
required: true
|
||||
schema:
|
||||
default: 1RyAhNwby-gzGCRVsMxKbQ
|
||||
example: 1RyAhNwby-gzGCRVsMxKbQ
|
||||
type: string
|
||||
requestBody:
|
||||
content:
|
||||
application/json:
|
||||
schema:
|
||||
properties:
|
||||
features:
|
||||
properties:
|
||||
blue_business_profile_image_shape_enabled:
|
||||
default: true
|
||||
example: true
|
||||
type: boolean
|
||||
freedom_of_speech_not_reach_fetch_enabled:
|
||||
default: true
|
||||
example: true
|
||||
type: boolean
|
||||
graphql_is_translatable_rweb_tweet_is_translatable_enabled:
|
||||
default: true
|
||||
example: true
|
||||
type: boolean
|
||||
interactive_text_enabled:
|
||||
default: true
|
||||
example: true
|
||||
type: boolean
|
||||
longform_notetweets_consumption_enabled:
|
||||
default: true
|
||||
example: true
|
||||
type: boolean
|
||||
longform_notetweets_rich_text_read_enabled:
|
||||
default: true
|
||||
example: true
|
||||
type: boolean
|
||||
responsive_web_edit_tweet_api_enabled:
|
||||
default: true
|
||||
example: true
|
||||
type: boolean
|
||||
responsive_web_enhance_cards_enabled:
|
||||
default: false
|
||||
example: false
|
||||
type: boolean
|
||||
responsive_web_graphql_exclude_directive_enabled:
|
||||
default: true
|
||||
example: true
|
||||
type: boolean
|
||||
responsive_web_graphql_skip_user_profile_image_extensions_enabled:
|
||||
default: false
|
||||
example: false
|
||||
type: boolean
|
||||
responsive_web_graphql_timeline_navigation_enabled:
|
||||
default: true
|
||||
example: true
|
||||
type: boolean
|
||||
responsive_web_text_conversations_enabled:
|
||||
default: false
|
||||
example: false
|
||||
type: boolean
|
||||
standardized_nudges_misinfo:
|
||||
default: true
|
||||
example: true
|
||||
type: boolean
|
||||
tweet_awards_web_tipping_enabled:
|
||||
default: false
|
||||
example: false
|
||||
type: boolean
|
||||
tweet_with_visibility_results_prefer_gql_limited_actions_policy_enabled:
|
||||
default: false
|
||||
example: false
|
||||
type: boolean
|
||||
tweetypie_unmention_optimization_enabled:
|
||||
default: true
|
||||
example: true
|
||||
type: boolean
|
||||
verified_phone_label_enabled:
|
||||
default: false
|
||||
example: false
|
||||
type: boolean
|
||||
vibe_api_enabled:
|
||||
default: true
|
||||
example: true
|
||||
type: boolean
|
||||
view_counts_everywhere_api_enabled:
|
||||
default: true
|
||||
example: true
|
||||
type: boolean
|
||||
required:
|
||||
- tweetypie_unmention_optimization_enabled
|
||||
- vibe_api_enabled
|
||||
- responsive_web_edit_tweet_api_enabled
|
||||
- graphql_is_translatable_rweb_tweet_is_translatable_enabled
|
||||
- view_counts_everywhere_api_enabled
|
||||
- longform_notetweets_consumption_enabled
|
||||
- tweet_awards_web_tipping_enabled
|
||||
- interactive_text_enabled
|
||||
- responsive_web_text_conversations_enabled
|
||||
- longform_notetweets_rich_text_read_enabled
|
||||
- blue_business_profile_image_shape_enabled
|
||||
- responsive_web_graphql_exclude_directive_enabled
|
||||
- verified_phone_label_enabled
|
||||
- freedom_of_speech_not_reach_fetch_enabled
|
||||
- standardized_nudges_misinfo
|
||||
- tweet_with_visibility_results_prefer_gql_limited_actions_policy_enabled
|
||||
- responsive_web_graphql_skip_user_profile_image_extensions_enabled
|
||||
- responsive_web_graphql_timeline_navigation_enabled
|
||||
- responsive_web_enhance_cards_enabled
|
||||
type: object
|
||||
queryId:
|
||||
default: 1RyAhNwby-gzGCRVsMxKbQ
|
||||
example: 1RyAhNwby-gzGCRVsMxKbQ
|
||||
type: string
|
||||
variables:
|
||||
properties:
|
||||
dark_request:
|
||||
default: false
|
||||
example: false
|
||||
type: boolean
|
||||
media:
|
||||
properties:
|
||||
media_entities:
|
||||
items:
|
||||
type: object
|
||||
type: array
|
||||
possibly_sensitive:
|
||||
default: false
|
||||
example: false
|
||||
type: boolean
|
||||
required:
|
||||
- media_entities
|
||||
- possibly_sensitive
|
||||
type: object
|
||||
semantic_annotation_ids:
|
||||
items:
|
||||
type: object
|
||||
type: array
|
||||
tweet_text:
|
||||
default: test
|
||||
example: test
|
||||
type: string
|
||||
required:
|
||||
- tweet_text
|
||||
- media
|
||||
- semantic_annotation_ids
|
||||
- dark_request
|
||||
type: object
|
||||
required:
|
||||
- queryId
|
||||
- variables
|
||||
- features
|
||||
description: body
|
||||
required: true
|
||||
responses:
|
||||
'200':
|
||||
content:
|
||||
application/json:
|
||||
schema:
|
||||
$ref: '#/components/schemas/CreateTweetResponse'
|
||||
description: Successful operation
|
||||
headers:
|
||||
x-connection-hash:
|
||||
schema:
|
||||
type: string
|
||||
x-rate-limit-limit:
|
||||
schema:
|
||||
type: integer
|
||||
x-rate-limit-remaining:
|
||||
schema:
|
||||
type: integer
|
||||
x-rate-limit-reset:
|
||||
schema:
|
||||
type: integer
|
||||
x-response-time:
|
||||
schema:
|
||||
type: integer
|
||||
x-tfe-preserve-body:
|
||||
schema:
|
||||
type: boolean
|
||||
x-transaction-id:
|
||||
schema:
|
||||
type: string
|
||||
x-twitter-response-tags:
|
||||
schema:
|
||||
type: string
|
||||
tags:
|
||||
- post
|
||||
/graphql/{pathQueryId}/DeleteRetweet:
|
||||
post:
|
||||
description: delete Retweet
|
||||
operationId: postDeleteRetweet
|
||||
parameters:
|
||||
- in: path
|
||||
name: pathQueryId
|
||||
required: true
|
||||
schema:
|
||||
default: iQtK4dl5hBmXewYZuEOKVw
|
||||
example: iQtK4dl5hBmXewYZuEOKVw
|
||||
type: string
|
||||
requestBody:
|
||||
content:
|
||||
application/json:
|
||||
schema:
|
||||
properties:
|
||||
queryId:
|
||||
default: iQtK4dl5hBmXewYZuEOKVw
|
||||
example: iQtK4dl5hBmXewYZuEOKVw
|
||||
type: string
|
||||
variables:
|
||||
properties:
|
||||
dark_request:
|
||||
default: false
|
||||
example: false
|
||||
type: boolean
|
||||
source_tweet_id:
|
||||
default: '1349129669258448897'
|
||||
example: '1349129669258448897'
|
||||
type: string
|
||||
required:
|
||||
- source_tweet_id
|
||||
- dark_request
|
||||
type: object
|
||||
required:
|
||||
- queryId
|
||||
- variables
|
||||
description: body
|
||||
required: true
|
||||
responses:
|
||||
'200':
|
||||
content:
|
||||
application/json:
|
||||
schema:
|
||||
$ref: '#/components/schemas/DeleteRetweetResponse'
|
||||
description: Successful operation
|
||||
headers:
|
||||
x-connection-hash:
|
||||
schema:
|
||||
type: string
|
||||
x-rate-limit-limit:
|
||||
schema:
|
||||
type: integer
|
||||
x-rate-limit-remaining:
|
||||
schema:
|
||||
type: integer
|
||||
x-rate-limit-reset:
|
||||
schema:
|
||||
type: integer
|
||||
x-response-time:
|
||||
schema:
|
||||
type: integer
|
||||
x-tfe-preserve-body:
|
||||
schema:
|
||||
type: boolean
|
||||
x-transaction-id:
|
||||
schema:
|
||||
type: string
|
||||
x-twitter-response-tags:
|
||||
schema:
|
||||
type: string
|
||||
tags:
|
||||
- post
|
||||
/graphql/{pathQueryId}/DeleteTweet:
|
||||
post:
|
||||
description: delete Retweet
|
||||
operationId: postDeleteTweet
|
||||
parameters:
|
||||
- in: path
|
||||
name: pathQueryId
|
||||
required: true
|
||||
schema:
|
||||
default: VaenaVgh5q5ih7kvyVjgtg
|
||||
example: VaenaVgh5q5ih7kvyVjgtg
|
||||
type: string
|
||||
requestBody:
|
||||
content:
|
||||
application/json:
|
||||
schema:
|
||||
properties:
|
||||
queryId:
|
||||
default: VaenaVgh5q5ih7kvyVjgtg
|
||||
example: VaenaVgh5q5ih7kvyVjgtg
|
||||
type: string
|
||||
variables:
|
||||
properties:
|
||||
dark_request:
|
||||
default: false
|
||||
example: false
|
||||
type: boolean
|
||||
tweet_id:
|
||||
default: '1349129669258448897'
|
||||
example: '1349129669258448897'
|
||||
type: string
|
||||
required:
|
||||
- tweet_id
|
||||
- dark_request
|
||||
type: object
|
||||
required:
|
||||
- queryId
|
||||
- variables
|
||||
description: body
|
||||
required: true
|
||||
responses:
|
||||
'200':
|
||||
content:
|
||||
application/json:
|
||||
schema:
|
||||
$ref: '#/components/schemas/DeleteTweetResponse'
|
||||
description: Successful operation
|
||||
headers:
|
||||
x-connection-hash:
|
||||
schema:
|
||||
type: string
|
||||
x-rate-limit-limit:
|
||||
schema:
|
||||
type: integer
|
||||
x-rate-limit-remaining:
|
||||
schema:
|
||||
type: integer
|
||||
x-rate-limit-reset:
|
||||
schema:
|
||||
type: integer
|
||||
x-response-time:
|
||||
schema:
|
||||
type: integer
|
||||
x-tfe-preserve-body:
|
||||
schema:
|
||||
type: boolean
|
||||
x-transaction-id:
|
||||
schema:
|
||||
type: string
|
||||
x-twitter-response-tags:
|
||||
schema:
|
||||
type: string
|
||||
tags:
|
||||
- post
|
||||
/graphql/{pathQueryId}/FavoriteTweet:
|
||||
post:
|
||||
description: favorite Tweet
|
||||
operationId: postFavoriteTweet
|
||||
parameters:
|
||||
- in: path
|
||||
name: pathQueryId
|
||||
required: true
|
||||
schema:
|
||||
default: lI07N6Otwv1PhnEgXILM7A
|
||||
example: lI07N6Otwv1PhnEgXILM7A
|
||||
type: string
|
||||
requestBody:
|
||||
content:
|
||||
application/json:
|
||||
schema:
|
||||
properties:
|
||||
queryId:
|
||||
default: lI07N6Otwv1PhnEgXILM7A
|
||||
example: lI07N6Otwv1PhnEgXILM7A
|
||||
type: string
|
||||
variables:
|
||||
properties:
|
||||
dark_request:
|
||||
default: false
|
||||
example: false
|
||||
type: boolean
|
||||
tweet_id:
|
||||
default: '1349129669258448897'
|
||||
example: '1349129669258448897'
|
||||
type: string
|
||||
required:
|
||||
- tweet_id
|
||||
- dark_request
|
||||
type: object
|
||||
required:
|
||||
- queryId
|
||||
- variables
|
||||
description: body
|
||||
required: true
|
||||
responses:
|
||||
'200':
|
||||
content:
|
||||
application/json:
|
||||
schema:
|
||||
$ref: '#/components/schemas/FavoriteTweetResponseData'
|
||||
description: Successful operation
|
||||
headers:
|
||||
x-connection-hash:
|
||||
schema:
|
||||
type: string
|
||||
x-rate-limit-limit:
|
||||
schema:
|
||||
type: integer
|
||||
x-rate-limit-remaining:
|
||||
schema:
|
||||
type: integer
|
||||
x-rate-limit-reset:
|
||||
schema:
|
||||
type: integer
|
||||
x-response-time:
|
||||
schema:
|
||||
type: integer
|
||||
x-tfe-preserve-body:
|
||||
schema:
|
||||
type: boolean
|
||||
x-transaction-id:
|
||||
schema:
|
||||
type: string
|
||||
x-twitter-response-tags:
|
||||
schema:
|
||||
type: string
|
||||
tags:
|
||||
- post
|
||||
/graphql/{pathQueryId}/UnfavoriteTweet:
|
||||
post:
|
||||
description: unfavorite Tweet
|
||||
operationId: postUnfavoriteTweet
|
||||
parameters:
|
||||
- in: path
|
||||
name: pathQueryId
|
||||
required: true
|
||||
schema:
|
||||
default: ZYKSe-w7KEslx3JhSIk5LA
|
||||
example: ZYKSe-w7KEslx3JhSIk5LA
|
||||
type: string
|
||||
requestBody:
|
||||
content:
|
||||
application/json:
|
||||
schema:
|
||||
properties:
|
||||
queryId:
|
||||
default: ZYKSe-w7KEslx3JhSIk5LA
|
||||
example: ZYKSe-w7KEslx3JhSIk5LA
|
||||
type: string
|
||||
variables:
|
||||
properties:
|
||||
dark_request:
|
||||
default: false
|
||||
example: false
|
||||
type: boolean
|
||||
tweet_id:
|
||||
default: '1349129669258448897'
|
||||
example: '1349129669258448897'
|
||||
type: string
|
||||
required:
|
||||
- tweet_id
|
||||
- dark_request
|
||||
type: object
|
||||
required:
|
||||
- queryId
|
||||
- variables
|
||||
description: body
|
||||
required: true
|
||||
responses:
|
||||
'200':
|
||||
content:
|
||||
application/json:
|
||||
schema:
|
||||
$ref: '#/components/schemas/UnfavoriteTweetResponseData'
|
||||
description: Successful operation
|
||||
headers:
|
||||
x-connection-hash:
|
||||
schema:
|
||||
type: string
|
||||
x-rate-limit-limit:
|
||||
schema:
|
||||
type: integer
|
||||
x-rate-limit-remaining:
|
||||
schema:
|
||||
type: integer
|
||||
x-rate-limit-reset:
|
||||
schema:
|
||||
type: integer
|
||||
x-response-time:
|
||||
schema:
|
||||
type: integer
|
||||
x-tfe-preserve-body:
|
||||
schema:
|
||||
type: boolean
|
||||
x-transaction-id:
|
||||
schema:
|
||||
type: string
|
||||
x-twitter-response-tags:
|
||||
schema:
|
||||
type: string
|
||||
tags:
|
||||
- post
|
||||
123
dist/compatible/paths/profile.yaml
vendored
Normal file
123
dist/compatible/paths/profile.yaml
vendored
Normal file
|
|
@ -0,0 +1,123 @@
|
|||
components:
|
||||
schemas:
|
||||
ProfileResponse:
|
||||
properties:
|
||||
data:
|
||||
$ref: '#/components/schemas/ProfileResponseData'
|
||||
required:
|
||||
- data
|
||||
ProfileResponseData:
|
||||
properties:
|
||||
user_result_by_screen_name:
|
||||
$ref: '#/components/schemas/UserResultByScreenName'
|
||||
required:
|
||||
- user_result_by_screen_name
|
||||
UserResultByScreenName:
|
||||
properties:
|
||||
id:
|
||||
pattern: ^[0-9a-zA-Z]+$
|
||||
type: string
|
||||
result:
|
||||
$ref: '#/components/schemas/UserResultByScreenNameResult'
|
||||
required:
|
||||
- id
|
||||
- result
|
||||
UserResultByScreenNameLegacy:
|
||||
properties:
|
||||
blocked_by:
|
||||
type: boolean
|
||||
blocking:
|
||||
type: boolean
|
||||
followed_by:
|
||||
type: boolean
|
||||
following:
|
||||
type: boolean
|
||||
name:
|
||||
type: string
|
||||
protected:
|
||||
type: boolean
|
||||
screen_name:
|
||||
type: string
|
||||
UserResultByScreenNameResult:
|
||||
properties:
|
||||
__typename:
|
||||
$ref: ./../schemas/typename.yaml#/components/schemas/TypeName
|
||||
id:
|
||||
pattern: ^[0-9a-zA-Z=]+$
|
||||
type: string
|
||||
legacy:
|
||||
$ref: '#/components/schemas/UserResultByScreenNameLegacy'
|
||||
profilemodules:
|
||||
type: object
|
||||
rest_id:
|
||||
pattern: ^[0-9]+$
|
||||
type: string
|
||||
required:
|
||||
- __typename
|
||||
- id
|
||||
- legacy
|
||||
- profilemodules
|
||||
- rest_id
|
||||
info:
|
||||
title: Twitter OpenAPI
|
||||
version: 0.0.1
|
||||
openapi: 3.0.3
|
||||
paths:
|
||||
/graphql/{pathQueryId}/ProfileSpotlightsQuery:
|
||||
get:
|
||||
description: get user by screen name
|
||||
operationId: getProfileSpotlightsQuery
|
||||
parameters:
|
||||
- in: path
|
||||
name: pathQueryId
|
||||
required: true
|
||||
schema:
|
||||
default: 9zwVLJ48lmVUk8u_Gh9DmA
|
||||
example: 9zwVLJ48lmVUk8u_Gh9DmA
|
||||
type: string
|
||||
- in: query
|
||||
name: variables
|
||||
required: true
|
||||
schema:
|
||||
default: '{"screen_name": "elonmusk"}'
|
||||
example: '{"screen_name": "elonmusk"}'
|
||||
type: string
|
||||
- in: query
|
||||
name: features
|
||||
required: true
|
||||
schema:
|
||||
default: '{}'
|
||||
example: '{}'
|
||||
type: string
|
||||
responses:
|
||||
'200':
|
||||
content:
|
||||
application/json:
|
||||
schema:
|
||||
$ref: '#/components/schemas/ProfileResponse'
|
||||
description: Successful operation
|
||||
headers:
|
||||
x-connection-hash:
|
||||
schema:
|
||||
type: string
|
||||
x-rate-limit-limit:
|
||||
schema:
|
||||
type: integer
|
||||
x-rate-limit-remaining:
|
||||
schema:
|
||||
type: integer
|
||||
x-rate-limit-reset:
|
||||
schema:
|
||||
type: integer
|
||||
x-response-time:
|
||||
schema:
|
||||
type: integer
|
||||
x-tfe-preserve-body:
|
||||
schema:
|
||||
type: boolean
|
||||
x-transaction-id:
|
||||
schema:
|
||||
type: string
|
||||
x-twitter-response-tags:
|
||||
schema:
|
||||
type: string
|
||||
293
dist/compatible/paths/timeline.yaml
vendored
Normal file
293
dist/compatible/paths/timeline.yaml
vendored
Normal file
|
|
@ -0,0 +1,293 @@
|
|||
components:
|
||||
schemas:
|
||||
HomeTimelineHome:
|
||||
properties:
|
||||
home_timeline_urt:
|
||||
$ref: ./../schemas/timeline.yaml#/components/schemas/Timeline
|
||||
required:
|
||||
- home_timeline_urt
|
||||
HomeTimelineResponseData:
|
||||
properties:
|
||||
home:
|
||||
$ref: '#/components/schemas/HomeTimelineHome'
|
||||
required:
|
||||
- home
|
||||
ListTweetsTimeline:
|
||||
properties:
|
||||
timeline:
|
||||
$ref: ./../schemas/timeline.yaml#/components/schemas/Timeline
|
||||
required:
|
||||
- timeline
|
||||
ListTweetsTimelineData:
|
||||
properties:
|
||||
list:
|
||||
$ref: '#/components/schemas/ListTweetsTimelineList'
|
||||
required:
|
||||
- list
|
||||
ListTweetsTimelineList:
|
||||
properties:
|
||||
tweets_timeline:
|
||||
$ref: '#/components/schemas/ListTweetsTimeline'
|
||||
required:
|
||||
- tweets_timeline
|
||||
ListTweetsTimelineResponse:
|
||||
properties:
|
||||
data:
|
||||
$ref: '#/components/schemas/ListTweetsTimelineData'
|
||||
required:
|
||||
- data
|
||||
TimelineResponse:
|
||||
properties:
|
||||
data:
|
||||
$ref: '#/components/schemas/HomeTimelineResponseData'
|
||||
required:
|
||||
- data
|
||||
info:
|
||||
title: Twitter OpenAPI
|
||||
version: 0.0.1
|
||||
openapi: 3.0.3
|
||||
paths:
|
||||
/graphql/{pathQueryId}/HomeLatestTimeline:
|
||||
get:
|
||||
description: get tweet list of timeline
|
||||
operationId: getHomeLatestTimeline
|
||||
parameters:
|
||||
- in: path
|
||||
name: pathQueryId
|
||||
required: true
|
||||
schema:
|
||||
default: zhX91JE87mWvfprhYE97xA
|
||||
example: zhX91JE87mWvfprhYE97xA
|
||||
type: string
|
||||
- in: query
|
||||
name: variables
|
||||
required: true
|
||||
schema:
|
||||
default: '{"count": 20, "includePromotedContent": true, "latestControlAvailable":
|
||||
true, "requestContext": "launch"}'
|
||||
example: '{"count": 20, "includePromotedContent": true, "latestControlAvailable":
|
||||
true, "requestContext": "launch"}'
|
||||
type: string
|
||||
- in: query
|
||||
name: features
|
||||
required: true
|
||||
schema:
|
||||
default: '{"blue_business_profile_image_shape_enabled": true, "responsive_web_graphql_exclude_directive_enabled":
|
||||
true, "verified_phone_label_enabled": false, "responsive_web_graphql_timeline_navigation_enabled":
|
||||
true, "responsive_web_graphql_skip_user_profile_image_extensions_enabled":
|
||||
false, "tweetypie_unmention_optimization_enabled": true, "vibe_api_enabled":
|
||||
true, "responsive_web_edit_tweet_api_enabled": true, "graphql_is_translatable_rweb_tweet_is_translatable_enabled":
|
||||
true, "view_counts_everywhere_api_enabled": true, "longform_notetweets_consumption_enabled":
|
||||
true, "tweet_awards_web_tipping_enabled": false, "freedom_of_speech_not_reach_fetch_enabled":
|
||||
false, "standardized_nudges_misinfo": true, "tweet_with_visibility_results_prefer_gql_limited_actions_policy_enabled":
|
||||
false, "interactive_text_enabled": true, "responsive_web_text_conversations_enabled":
|
||||
false, "longform_notetweets_rich_text_read_enabled": true, "responsive_web_enhance_cards_enabled":
|
||||
false}'
|
||||
example: '{"blue_business_profile_image_shape_enabled": true, "responsive_web_graphql_exclude_directive_enabled":
|
||||
true, "verified_phone_label_enabled": false, "responsive_web_graphql_timeline_navigation_enabled":
|
||||
true, "responsive_web_graphql_skip_user_profile_image_extensions_enabled":
|
||||
false, "tweetypie_unmention_optimization_enabled": true, "vibe_api_enabled":
|
||||
true, "responsive_web_edit_tweet_api_enabled": true, "graphql_is_translatable_rweb_tweet_is_translatable_enabled":
|
||||
true, "view_counts_everywhere_api_enabled": true, "longform_notetweets_consumption_enabled":
|
||||
true, "tweet_awards_web_tipping_enabled": false, "freedom_of_speech_not_reach_fetch_enabled":
|
||||
false, "standardized_nudges_misinfo": true, "tweet_with_visibility_results_prefer_gql_limited_actions_policy_enabled":
|
||||
false, "interactive_text_enabled": true, "responsive_web_text_conversations_enabled":
|
||||
false, "longform_notetweets_rich_text_read_enabled": true, "responsive_web_enhance_cards_enabled":
|
||||
false}'
|
||||
type: string
|
||||
responses:
|
||||
'200':
|
||||
content:
|
||||
application/json:
|
||||
schema:
|
||||
$ref: '#/components/schemas/TimelineResponse'
|
||||
description: Successful operation
|
||||
headers:
|
||||
x-connection-hash:
|
||||
schema:
|
||||
type: string
|
||||
x-rate-limit-limit:
|
||||
schema:
|
||||
type: integer
|
||||
x-rate-limit-remaining:
|
||||
schema:
|
||||
type: integer
|
||||
x-rate-limit-reset:
|
||||
schema:
|
||||
type: integer
|
||||
x-response-time:
|
||||
schema:
|
||||
type: integer
|
||||
x-tfe-preserve-body:
|
||||
schema:
|
||||
type: boolean
|
||||
x-transaction-id:
|
||||
schema:
|
||||
type: string
|
||||
x-twitter-response-tags:
|
||||
schema:
|
||||
type: string
|
||||
tags:
|
||||
- tweet
|
||||
/graphql/{pathQueryId}/HomeTimeline:
|
||||
get:
|
||||
description: get tweet list of timeline
|
||||
operationId: getHomeTimeline
|
||||
parameters:
|
||||
- in: path
|
||||
name: pathQueryId
|
||||
required: true
|
||||
schema:
|
||||
default: HCosKfLNW1AcOo3la3mMgg
|
||||
example: HCosKfLNW1AcOo3la3mMgg
|
||||
type: string
|
||||
- in: query
|
||||
name: variables
|
||||
required: true
|
||||
schema:
|
||||
default: '{"count": 20, "includePromotedContent": true, "latestControlAvailable":
|
||||
true, "requestContext": "launch", "withCommunity": true}'
|
||||
example: '{"count": 20, "includePromotedContent": true, "latestControlAvailable":
|
||||
true, "requestContext": "launch", "withCommunity": true}'
|
||||
type: string
|
||||
- in: query
|
||||
name: features
|
||||
required: true
|
||||
schema:
|
||||
default: '{"blue_business_profile_image_shape_enabled": true, "responsive_web_graphql_exclude_directive_enabled":
|
||||
true, "verified_phone_label_enabled": false, "responsive_web_graphql_timeline_navigation_enabled":
|
||||
true, "responsive_web_graphql_skip_user_profile_image_extensions_enabled":
|
||||
false, "tweetypie_unmention_optimization_enabled": true, "vibe_api_enabled":
|
||||
true, "responsive_web_edit_tweet_api_enabled": true, "graphql_is_translatable_rweb_tweet_is_translatable_enabled":
|
||||
true, "view_counts_everywhere_api_enabled": true, "longform_notetweets_consumption_enabled":
|
||||
true, "tweet_awards_web_tipping_enabled": false, "freedom_of_speech_not_reach_fetch_enabled":
|
||||
false, "standardized_nudges_misinfo": true, "tweet_with_visibility_results_prefer_gql_limited_actions_policy_enabled":
|
||||
false, "interactive_text_enabled": true, "responsive_web_text_conversations_enabled":
|
||||
false, "longform_notetweets_rich_text_read_enabled": true, "responsive_web_enhance_cards_enabled":
|
||||
false}'
|
||||
example: '{"blue_business_profile_image_shape_enabled": true, "responsive_web_graphql_exclude_directive_enabled":
|
||||
true, "verified_phone_label_enabled": false, "responsive_web_graphql_timeline_navigation_enabled":
|
||||
true, "responsive_web_graphql_skip_user_profile_image_extensions_enabled":
|
||||
false, "tweetypie_unmention_optimization_enabled": true, "vibe_api_enabled":
|
||||
true, "responsive_web_edit_tweet_api_enabled": true, "graphql_is_translatable_rweb_tweet_is_translatable_enabled":
|
||||
true, "view_counts_everywhere_api_enabled": true, "longform_notetweets_consumption_enabled":
|
||||
true, "tweet_awards_web_tipping_enabled": false, "freedom_of_speech_not_reach_fetch_enabled":
|
||||
false, "standardized_nudges_misinfo": true, "tweet_with_visibility_results_prefer_gql_limited_actions_policy_enabled":
|
||||
false, "interactive_text_enabled": true, "responsive_web_text_conversations_enabled":
|
||||
false, "longform_notetweets_rich_text_read_enabled": true, "responsive_web_enhance_cards_enabled":
|
||||
false}'
|
||||
type: string
|
||||
responses:
|
||||
'200':
|
||||
content:
|
||||
application/json:
|
||||
schema:
|
||||
$ref: '#/components/schemas/TimelineResponse'
|
||||
description: Successful operation
|
||||
headers:
|
||||
x-connection-hash:
|
||||
schema:
|
||||
type: string
|
||||
x-rate-limit-limit:
|
||||
schema:
|
||||
type: integer
|
||||
x-rate-limit-remaining:
|
||||
schema:
|
||||
type: integer
|
||||
x-rate-limit-reset:
|
||||
schema:
|
||||
type: integer
|
||||
x-response-time:
|
||||
schema:
|
||||
type: integer
|
||||
x-tfe-preserve-body:
|
||||
schema:
|
||||
type: boolean
|
||||
x-transaction-id:
|
||||
schema:
|
||||
type: string
|
||||
x-twitter-response-tags:
|
||||
schema:
|
||||
type: string
|
||||
tags:
|
||||
- tweet
|
||||
/graphql/{pathQueryId}/ListLatestTweetsTimeline:
|
||||
get:
|
||||
description: get tweet list of timeline
|
||||
operationId: getListLatestTweetsTimeline
|
||||
parameters:
|
||||
- in: path
|
||||
name: pathQueryId
|
||||
required: true
|
||||
schema:
|
||||
default: 2TemLyqrMpTeAmysdbnVqw
|
||||
example: 2TemLyqrMpTeAmysdbnVqw
|
||||
type: string
|
||||
- in: query
|
||||
name: variables
|
||||
required: true
|
||||
schema:
|
||||
default: '{"listId": "53044119", "count": 20}'
|
||||
example: '{"listId": "53044119", "count": 20}'
|
||||
type: string
|
||||
- in: query
|
||||
name: features
|
||||
required: true
|
||||
schema:
|
||||
default: '{"blue_business_profile_image_shape_enabled": true, "responsive_web_graphql_exclude_directive_enabled":
|
||||
true, "verified_phone_label_enabled": false, "responsive_web_graphql_timeline_navigation_enabled":
|
||||
true, "responsive_web_graphql_skip_user_profile_image_extensions_enabled":
|
||||
false, "tweetypie_unmention_optimization_enabled": true, "vibe_api_enabled":
|
||||
true, "responsive_web_edit_tweet_api_enabled": true, "graphql_is_translatable_rweb_tweet_is_translatable_enabled":
|
||||
true, "view_counts_everywhere_api_enabled": true, "longform_notetweets_consumption_enabled":
|
||||
true, "tweet_awards_web_tipping_enabled": false, "freedom_of_speech_not_reach_fetch_enabled":
|
||||
false, "standardized_nudges_misinfo": true, "tweet_with_visibility_results_prefer_gql_limited_actions_policy_enabled":
|
||||
false, "interactive_text_enabled": true, "responsive_web_text_conversations_enabled":
|
||||
false, "longform_notetweets_rich_text_read_enabled": true, "responsive_web_enhance_cards_enabled":
|
||||
false}'
|
||||
example: '{"blue_business_profile_image_shape_enabled": true, "responsive_web_graphql_exclude_directive_enabled":
|
||||
true, "verified_phone_label_enabled": false, "responsive_web_graphql_timeline_navigation_enabled":
|
||||
true, "responsive_web_graphql_skip_user_profile_image_extensions_enabled":
|
||||
false, "tweetypie_unmention_optimization_enabled": true, "vibe_api_enabled":
|
||||
true, "responsive_web_edit_tweet_api_enabled": true, "graphql_is_translatable_rweb_tweet_is_translatable_enabled":
|
||||
true, "view_counts_everywhere_api_enabled": true, "longform_notetweets_consumption_enabled":
|
||||
true, "tweet_awards_web_tipping_enabled": false, "freedom_of_speech_not_reach_fetch_enabled":
|
||||
false, "standardized_nudges_misinfo": true, "tweet_with_visibility_results_prefer_gql_limited_actions_policy_enabled":
|
||||
false, "interactive_text_enabled": true, "responsive_web_text_conversations_enabled":
|
||||
false, "longform_notetweets_rich_text_read_enabled": true, "responsive_web_enhance_cards_enabled":
|
||||
false}'
|
||||
type: string
|
||||
responses:
|
||||
'200':
|
||||
content:
|
||||
application/json:
|
||||
schema:
|
||||
$ref: '#/components/schemas/ListTweetsTimelineResponse'
|
||||
description: Successful operation
|
||||
headers:
|
||||
x-connection-hash:
|
||||
schema:
|
||||
type: string
|
||||
x-rate-limit-limit:
|
||||
schema:
|
||||
type: integer
|
||||
x-rate-limit-remaining:
|
||||
schema:
|
||||
type: integer
|
||||
x-rate-limit-reset:
|
||||
schema:
|
||||
type: integer
|
||||
x-response-time:
|
||||
schema:
|
||||
type: integer
|
||||
x-tfe-preserve-body:
|
||||
schema:
|
||||
type: boolean
|
||||
x-transaction-id:
|
||||
schema:
|
||||
type: string
|
||||
x-twitter-response-tags:
|
||||
schema:
|
||||
type: string
|
||||
tags:
|
||||
- tweet
|
||||
105
dist/compatible/paths/tweet.yaml
vendored
Normal file
105
dist/compatible/paths/tweet.yaml
vendored
Normal file
|
|
@ -0,0 +1,105 @@
|
|||
components:
|
||||
schemas:
|
||||
TweetDetailResponse:
|
||||
properties:
|
||||
data:
|
||||
$ref: '#/components/schemas/TweetDetailResponseData'
|
||||
required:
|
||||
- data
|
||||
TweetDetailResponseData:
|
||||
properties:
|
||||
threaded_conversation_with_injections_v2:
|
||||
$ref: ./../schemas/timeline.yaml#/components/schemas/Timeline
|
||||
required:
|
||||
- threaded_conversation_with_injections_v2
|
||||
info:
|
||||
title: Twitter OpenAPI
|
||||
version: 0.0.1
|
||||
openapi: 3.0.3
|
||||
paths:
|
||||
/graphql/{pathQueryId}/TweetDetail:
|
||||
get:
|
||||
description: get TweetDetail
|
||||
operationId: getTweetDetail
|
||||
parameters:
|
||||
- in: path
|
||||
name: pathQueryId
|
||||
required: true
|
||||
schema:
|
||||
default: wNNG8DBB8EaXw1lq4vFWGA
|
||||
example: wNNG8DBB8EaXw1lq4vFWGA
|
||||
type: string
|
||||
- in: query
|
||||
name: variables
|
||||
required: true
|
||||
schema:
|
||||
default: '{"focalTweetId": "1349129669258448897", "with_rux_injections":
|
||||
false, "includePromotedContent": true, "withCommunity": true, "withQuickPromoteEligibilityTweetFields":
|
||||
true, "withBirdwatchNotes": true, "withVoice": true, "withV2Timeline":
|
||||
true}'
|
||||
example: '{"focalTweetId": "1349129669258448897", "with_rux_injections":
|
||||
false, "includePromotedContent": true, "withCommunity": true, "withQuickPromoteEligibilityTweetFields":
|
||||
true, "withBirdwatchNotes": true, "withVoice": true, "withV2Timeline":
|
||||
true}'
|
||||
type: string
|
||||
- in: query
|
||||
name: features
|
||||
required: true
|
||||
schema:
|
||||
default: '{"blue_business_profile_image_shape_enabled": true, "responsive_web_graphql_exclude_directive_enabled":
|
||||
true, "verified_phone_label_enabled": false, "responsive_web_graphql_timeline_navigation_enabled":
|
||||
true, "responsive_web_graphql_skip_user_profile_image_extensions_enabled":
|
||||
false, "tweetypie_unmention_optimization_enabled": true, "vibe_api_enabled":
|
||||
true, "responsive_web_edit_tweet_api_enabled": true, "graphql_is_translatable_rweb_tweet_is_translatable_enabled":
|
||||
true, "view_counts_everywhere_api_enabled": true, "longform_notetweets_consumption_enabled":
|
||||
true, "tweet_awards_web_tipping_enabled": false, "freedom_of_speech_not_reach_fetch_enabled":
|
||||
false, "standardized_nudges_misinfo": true, "tweet_with_visibility_results_prefer_gql_limited_actions_policy_enabled":
|
||||
false, "interactive_text_enabled": true, "responsive_web_text_conversations_enabled":
|
||||
false, "longform_notetweets_rich_text_read_enabled": true, "responsive_web_enhance_cards_enabled":
|
||||
false}'
|
||||
example: '{"blue_business_profile_image_shape_enabled": true, "responsive_web_graphql_exclude_directive_enabled":
|
||||
true, "verified_phone_label_enabled": false, "responsive_web_graphql_timeline_navigation_enabled":
|
||||
true, "responsive_web_graphql_skip_user_profile_image_extensions_enabled":
|
||||
false, "tweetypie_unmention_optimization_enabled": true, "vibe_api_enabled":
|
||||
true, "responsive_web_edit_tweet_api_enabled": true, "graphql_is_translatable_rweb_tweet_is_translatable_enabled":
|
||||
true, "view_counts_everywhere_api_enabled": true, "longform_notetweets_consumption_enabled":
|
||||
true, "tweet_awards_web_tipping_enabled": false, "freedom_of_speech_not_reach_fetch_enabled":
|
||||
false, "standardized_nudges_misinfo": true, "tweet_with_visibility_results_prefer_gql_limited_actions_policy_enabled":
|
||||
false, "interactive_text_enabled": true, "responsive_web_text_conversations_enabled":
|
||||
false, "longform_notetweets_rich_text_read_enabled": true, "responsive_web_enhance_cards_enabled":
|
||||
false}'
|
||||
type: string
|
||||
responses:
|
||||
'200':
|
||||
content:
|
||||
application/json:
|
||||
schema:
|
||||
$ref: '#/components/schemas/TweetDetailResponse'
|
||||
description: Successful operation
|
||||
headers:
|
||||
x-connection-hash:
|
||||
schema:
|
||||
type: string
|
||||
x-rate-limit-limit:
|
||||
schema:
|
||||
type: integer
|
||||
x-rate-limit-remaining:
|
||||
schema:
|
||||
type: integer
|
||||
x-rate-limit-reset:
|
||||
schema:
|
||||
type: integer
|
||||
x-response-time:
|
||||
schema:
|
||||
type: integer
|
||||
x-tfe-preserve-body:
|
||||
schema:
|
||||
type: boolean
|
||||
x-transaction-id:
|
||||
schema:
|
||||
type: string
|
||||
x-twitter-response-tags:
|
||||
schema:
|
||||
type: string
|
||||
tags:
|
||||
- tweet
|
||||
83
dist/compatible/paths/user.yaml
vendored
Normal file
83
dist/compatible/paths/user.yaml
vendored
Normal file
|
|
@ -0,0 +1,83 @@
|
|||
components:
|
||||
schemas:
|
||||
UserResponse:
|
||||
properties:
|
||||
data:
|
||||
$ref: '#/components/schemas/UserResponseData'
|
||||
required:
|
||||
- data
|
||||
UserResponseData:
|
||||
properties:
|
||||
user:
|
||||
$ref: ./../schemas/user.yaml#/components/schemas/UserResults
|
||||
required:
|
||||
- user
|
||||
info:
|
||||
title: Twitter OpenAPI
|
||||
version: 0.0.1
|
||||
openapi: 3.0.3
|
||||
paths:
|
||||
/graphql/{pathQueryId}/UserByScreenName:
|
||||
get:
|
||||
description: get user by screen name
|
||||
operationId: getUserByScreenName
|
||||
parameters:
|
||||
- in: path
|
||||
name: pathQueryId
|
||||
required: true
|
||||
schema:
|
||||
default: sLVLhk0bGj3MVFEKTdax1w
|
||||
example: sLVLhk0bGj3MVFEKTdax1w
|
||||
type: string
|
||||
- in: query
|
||||
name: variables
|
||||
required: true
|
||||
schema:
|
||||
default: '{"screen_name": "elonmusk", "withSafetyModeUserFields": true}'
|
||||
example: '{"screen_name": "elonmusk", "withSafetyModeUserFields": true}'
|
||||
type: string
|
||||
- in: query
|
||||
name: features
|
||||
required: true
|
||||
schema:
|
||||
default: '{"blue_business_profile_image_shape_enabled": true, "responsive_web_graphql_exclude_directive_enabled":
|
||||
true, "verified_phone_label_enabled": false, "responsive_web_graphql_skip_user_profile_image_extensions_enabled":
|
||||
false, "responsive_web_graphql_timeline_navigation_enabled": true}'
|
||||
example: '{"blue_business_profile_image_shape_enabled": true, "responsive_web_graphql_exclude_directive_enabled":
|
||||
true, "verified_phone_label_enabled": false, "responsive_web_graphql_skip_user_profile_image_extensions_enabled":
|
||||
false, "responsive_web_graphql_timeline_navigation_enabled": true}'
|
||||
type: string
|
||||
responses:
|
||||
'200':
|
||||
content:
|
||||
application/json:
|
||||
schema:
|
||||
$ref: '#/components/schemas/UserResponse'
|
||||
description: Successful operation
|
||||
headers:
|
||||
x-connection-hash:
|
||||
schema:
|
||||
type: string
|
||||
x-rate-limit-limit:
|
||||
schema:
|
||||
type: integer
|
||||
x-rate-limit-remaining:
|
||||
schema:
|
||||
type: integer
|
||||
x-rate-limit-reset:
|
||||
schema:
|
||||
type: integer
|
||||
x-response-time:
|
||||
schema:
|
||||
type: integer
|
||||
x-tfe-preserve-body:
|
||||
schema:
|
||||
type: boolean
|
||||
x-transaction-id:
|
||||
schema:
|
||||
type: string
|
||||
x-twitter-response-tags:
|
||||
schema:
|
||||
type: string
|
||||
tags:
|
||||
- user
|
||||
368
dist/compatible/paths/usertweets.yaml
vendored
Normal file
368
dist/compatible/paths/usertweets.yaml
vendored
Normal file
|
|
@ -0,0 +1,368 @@
|
|||
components:
|
||||
schemas:
|
||||
UserTweetsData:
|
||||
properties:
|
||||
user:
|
||||
$ref: '#/components/schemas/UserTweetsUser'
|
||||
required:
|
||||
- user
|
||||
UserTweetsResponse:
|
||||
properties:
|
||||
data:
|
||||
$ref: '#/components/schemas/UserTweetsData'
|
||||
required:
|
||||
- data
|
||||
UserTweetsResult:
|
||||
properties:
|
||||
__typename:
|
||||
$ref: ./../schemas/typename.yaml#/components/schemas/TypeName
|
||||
timeline_v2:
|
||||
$ref: ./../schemas/timeline.yaml#/components/schemas/TimelineV2
|
||||
required:
|
||||
- __typename
|
||||
- timeline_v2
|
||||
UserTweetsUser:
|
||||
properties:
|
||||
result:
|
||||
$ref: '#/components/schemas/UserTweetsResult'
|
||||
required:
|
||||
- result
|
||||
info:
|
||||
title: Twitter OpenAPI
|
||||
version: 0.0.1
|
||||
openapi: 3.0.3
|
||||
paths:
|
||||
/graphql/{pathQueryId}/Likes:
|
||||
get:
|
||||
description: get user likes tweets
|
||||
operationId: getLikes
|
||||
parameters:
|
||||
- in: path
|
||||
name: pathQueryId
|
||||
required: true
|
||||
schema:
|
||||
default: 5fmEkRT-1AdHqEsbVgehMg
|
||||
example: 5fmEkRT-1AdHqEsbVgehMg
|
||||
type: string
|
||||
- in: query
|
||||
name: variables
|
||||
required: true
|
||||
schema:
|
||||
default: '{"userId": "44196397", "count": 20, "includePromotedContent":
|
||||
false, "withClientEventToken": false, "withBirdwatchNotes": false, "withVoice":
|
||||
true, "withV2Timeline": true}'
|
||||
example: '{"userId": "44196397", "count": 20, "includePromotedContent":
|
||||
false, "withClientEventToken": false, "withBirdwatchNotes": false, "withVoice":
|
||||
true, "withV2Timeline": true}'
|
||||
type: string
|
||||
- in: query
|
||||
name: features
|
||||
required: true
|
||||
schema:
|
||||
default: '{"blue_business_profile_image_shape_enabled": true, "responsive_web_graphql_exclude_directive_enabled":
|
||||
true, "verified_phone_label_enabled": false, "responsive_web_graphql_timeline_navigation_enabled":
|
||||
true, "responsive_web_graphql_skip_user_profile_image_extensions_enabled":
|
||||
false, "tweetypie_unmention_optimization_enabled": true, "vibe_api_enabled":
|
||||
true, "responsive_web_edit_tweet_api_enabled": true, "graphql_is_translatable_rweb_tweet_is_translatable_enabled":
|
||||
true, "view_counts_everywhere_api_enabled": true, "longform_notetweets_consumption_enabled":
|
||||
true, "tweet_awards_web_tipping_enabled": false, "freedom_of_speech_not_reach_fetch_enabled":
|
||||
false, "standardized_nudges_misinfo": true, "tweet_with_visibility_results_prefer_gql_limited_actions_policy_enabled":
|
||||
false, "interactive_text_enabled": true, "responsive_web_text_conversations_enabled":
|
||||
false, "longform_notetweets_rich_text_read_enabled": true, "responsive_web_enhance_cards_enabled":
|
||||
false}'
|
||||
example: '{"blue_business_profile_image_shape_enabled": true, "responsive_web_graphql_exclude_directive_enabled":
|
||||
true, "verified_phone_label_enabled": false, "responsive_web_graphql_timeline_navigation_enabled":
|
||||
true, "responsive_web_graphql_skip_user_profile_image_extensions_enabled":
|
||||
false, "tweetypie_unmention_optimization_enabled": true, "vibe_api_enabled":
|
||||
true, "responsive_web_edit_tweet_api_enabled": true, "graphql_is_translatable_rweb_tweet_is_translatable_enabled":
|
||||
true, "view_counts_everywhere_api_enabled": true, "longform_notetweets_consumption_enabled":
|
||||
true, "tweet_awards_web_tipping_enabled": false, "freedom_of_speech_not_reach_fetch_enabled":
|
||||
false, "standardized_nudges_misinfo": true, "tweet_with_visibility_results_prefer_gql_limited_actions_policy_enabled":
|
||||
false, "interactive_text_enabled": true, "responsive_web_text_conversations_enabled":
|
||||
false, "longform_notetweets_rich_text_read_enabled": true, "responsive_web_enhance_cards_enabled":
|
||||
false}'
|
||||
type: string
|
||||
responses:
|
||||
'200':
|
||||
content:
|
||||
application/json:
|
||||
schema:
|
||||
$ref: '#/components/schemas/UserTweetsResponse'
|
||||
description: Successful operation
|
||||
headers:
|
||||
x-connection-hash:
|
||||
schema:
|
||||
type: string
|
||||
x-rate-limit-limit:
|
||||
schema:
|
||||
type: integer
|
||||
x-rate-limit-remaining:
|
||||
schema:
|
||||
type: integer
|
||||
x-rate-limit-reset:
|
||||
schema:
|
||||
type: integer
|
||||
x-response-time:
|
||||
schema:
|
||||
type: integer
|
||||
x-tfe-preserve-body:
|
||||
schema:
|
||||
type: boolean
|
||||
x-transaction-id:
|
||||
schema:
|
||||
type: string
|
||||
x-twitter-response-tags:
|
||||
schema:
|
||||
type: string
|
||||
tags:
|
||||
- tweet
|
||||
/graphql/{pathQueryId}/UserMedia:
|
||||
get:
|
||||
description: get user media tweets
|
||||
operationId: getUserMedia
|
||||
parameters:
|
||||
- in: path
|
||||
name: pathQueryId
|
||||
required: true
|
||||
schema:
|
||||
default: YqiE3JL1KNgf9nSljYdxaA
|
||||
example: YqiE3JL1KNgf9nSljYdxaA
|
||||
type: string
|
||||
- in: query
|
||||
name: variables
|
||||
required: true
|
||||
schema:
|
||||
default: '{"userId": "44196397", "count": 40, "includePromotedContent":
|
||||
false, "withClientEventToken": false, "withBirdwatchNotes": false, "withVoice":
|
||||
true, "withV2Timeline": true}'
|
||||
example: '{"userId": "44196397", "count": 40, "includePromotedContent":
|
||||
false, "withClientEventToken": false, "withBirdwatchNotes": false, "withVoice":
|
||||
true, "withV2Timeline": true}'
|
||||
type: string
|
||||
- in: query
|
||||
name: features
|
||||
required: true
|
||||
schema:
|
||||
default: '{"blue_business_profile_image_shape_enabled": true, "responsive_web_graphql_exclude_directive_enabled":
|
||||
true, "verified_phone_label_enabled": false, "responsive_web_graphql_timeline_navigation_enabled":
|
||||
true, "responsive_web_graphql_skip_user_profile_image_extensions_enabled":
|
||||
false, "tweetypie_unmention_optimization_enabled": true, "vibe_api_enabled":
|
||||
true, "responsive_web_edit_tweet_api_enabled": true, "graphql_is_translatable_rweb_tweet_is_translatable_enabled":
|
||||
true, "view_counts_everywhere_api_enabled": true, "longform_notetweets_consumption_enabled":
|
||||
true, "tweet_awards_web_tipping_enabled": false, "freedom_of_speech_not_reach_fetch_enabled":
|
||||
false, "standardized_nudges_misinfo": true, "tweet_with_visibility_results_prefer_gql_limited_actions_policy_enabled":
|
||||
false, "interactive_text_enabled": true, "responsive_web_text_conversations_enabled":
|
||||
false, "longform_notetweets_rich_text_read_enabled": true, "responsive_web_enhance_cards_enabled":
|
||||
false}'
|
||||
example: '{"blue_business_profile_image_shape_enabled": true, "responsive_web_graphql_exclude_directive_enabled":
|
||||
true, "verified_phone_label_enabled": false, "responsive_web_graphql_timeline_navigation_enabled":
|
||||
true, "responsive_web_graphql_skip_user_profile_image_extensions_enabled":
|
||||
false, "tweetypie_unmention_optimization_enabled": true, "vibe_api_enabled":
|
||||
true, "responsive_web_edit_tweet_api_enabled": true, "graphql_is_translatable_rweb_tweet_is_translatable_enabled":
|
||||
true, "view_counts_everywhere_api_enabled": true, "longform_notetweets_consumption_enabled":
|
||||
true, "tweet_awards_web_tipping_enabled": false, "freedom_of_speech_not_reach_fetch_enabled":
|
||||
false, "standardized_nudges_misinfo": true, "tweet_with_visibility_results_prefer_gql_limited_actions_policy_enabled":
|
||||
false, "interactive_text_enabled": true, "responsive_web_text_conversations_enabled":
|
||||
false, "longform_notetweets_rich_text_read_enabled": true, "responsive_web_enhance_cards_enabled":
|
||||
false}'
|
||||
type: string
|
||||
responses:
|
||||
'200':
|
||||
content:
|
||||
application/json:
|
||||
schema:
|
||||
$ref: '#/components/schemas/UserTweetsResponse'
|
||||
description: Successful operation
|
||||
headers:
|
||||
x-connection-hash:
|
||||
schema:
|
||||
type: string
|
||||
x-rate-limit-limit:
|
||||
schema:
|
||||
type: integer
|
||||
x-rate-limit-remaining:
|
||||
schema:
|
||||
type: integer
|
||||
x-rate-limit-reset:
|
||||
schema:
|
||||
type: integer
|
||||
x-response-time:
|
||||
schema:
|
||||
type: integer
|
||||
x-tfe-preserve-body:
|
||||
schema:
|
||||
type: boolean
|
||||
x-transaction-id:
|
||||
schema:
|
||||
type: string
|
||||
x-twitter-response-tags:
|
||||
schema:
|
||||
type: string
|
||||
tags:
|
||||
- tweet
|
||||
/graphql/{pathQueryId}/UserTweets:
|
||||
get:
|
||||
description: get user tweets
|
||||
operationId: getUserTweets
|
||||
parameters:
|
||||
- in: path
|
||||
name: pathQueryId
|
||||
required: true
|
||||
schema:
|
||||
default: HuTx74BxAnezK1gWvYY7zg
|
||||
example: HuTx74BxAnezK1gWvYY7zg
|
||||
type: string
|
||||
- in: query
|
||||
name: variables
|
||||
required: true
|
||||
schema:
|
||||
default: '{"userId": "44196397", "count": 40, "includePromotedContent":
|
||||
true, "withQuickPromoteEligibilityTweetFields": true, "withVoice": true,
|
||||
"withV2Timeline": true}'
|
||||
example: '{"userId": "44196397", "count": 40, "includePromotedContent":
|
||||
true, "withQuickPromoteEligibilityTweetFields": true, "withVoice": true,
|
||||
"withV2Timeline": true}'
|
||||
type: string
|
||||
- in: query
|
||||
name: features
|
||||
required: true
|
||||
schema:
|
||||
default: '{"blue_business_profile_image_shape_enabled": true, "responsive_web_graphql_exclude_directive_enabled":
|
||||
true, "verified_phone_label_enabled": false, "responsive_web_graphql_timeline_navigation_enabled":
|
||||
true, "responsive_web_graphql_skip_user_profile_image_extensions_enabled":
|
||||
false, "tweetypie_unmention_optimization_enabled": true, "vibe_api_enabled":
|
||||
true, "responsive_web_edit_tweet_api_enabled": true, "graphql_is_translatable_rweb_tweet_is_translatable_enabled":
|
||||
true, "view_counts_everywhere_api_enabled": true, "longform_notetweets_consumption_enabled":
|
||||
true, "tweet_awards_web_tipping_enabled": false, "freedom_of_speech_not_reach_fetch_enabled":
|
||||
false, "standardized_nudges_misinfo": true, "tweet_with_visibility_results_prefer_gql_limited_actions_policy_enabled":
|
||||
false, "interactive_text_enabled": true, "responsive_web_text_conversations_enabled":
|
||||
false, "longform_notetweets_rich_text_read_enabled": true, "responsive_web_enhance_cards_enabled":
|
||||
false}'
|
||||
example: '{"blue_business_profile_image_shape_enabled": true, "responsive_web_graphql_exclude_directive_enabled":
|
||||
true, "verified_phone_label_enabled": false, "responsive_web_graphql_timeline_navigation_enabled":
|
||||
true, "responsive_web_graphql_skip_user_profile_image_extensions_enabled":
|
||||
false, "tweetypie_unmention_optimization_enabled": true, "vibe_api_enabled":
|
||||
true, "responsive_web_edit_tweet_api_enabled": true, "graphql_is_translatable_rweb_tweet_is_translatable_enabled":
|
||||
true, "view_counts_everywhere_api_enabled": true, "longform_notetweets_consumption_enabled":
|
||||
true, "tweet_awards_web_tipping_enabled": false, "freedom_of_speech_not_reach_fetch_enabled":
|
||||
false, "standardized_nudges_misinfo": true, "tweet_with_visibility_results_prefer_gql_limited_actions_policy_enabled":
|
||||
false, "interactive_text_enabled": true, "responsive_web_text_conversations_enabled":
|
||||
false, "longform_notetweets_rich_text_read_enabled": true, "responsive_web_enhance_cards_enabled":
|
||||
false}'
|
||||
type: string
|
||||
responses:
|
||||
'200':
|
||||
content:
|
||||
application/json:
|
||||
schema:
|
||||
$ref: '#/components/schemas/UserTweetsResponse'
|
||||
description: Successful operation
|
||||
headers:
|
||||
x-connection-hash:
|
||||
schema:
|
||||
type: string
|
||||
x-rate-limit-limit:
|
||||
schema:
|
||||
type: integer
|
||||
x-rate-limit-remaining:
|
||||
schema:
|
||||
type: integer
|
||||
x-rate-limit-reset:
|
||||
schema:
|
||||
type: integer
|
||||
x-response-time:
|
||||
schema:
|
||||
type: integer
|
||||
x-tfe-preserve-body:
|
||||
schema:
|
||||
type: boolean
|
||||
x-transaction-id:
|
||||
schema:
|
||||
type: string
|
||||
x-twitter-response-tags:
|
||||
schema:
|
||||
type: string
|
||||
tags:
|
||||
- tweet
|
||||
/graphql/{pathQueryId}/UserTweetsAndReplies:
|
||||
get:
|
||||
description: get user replies tweets
|
||||
operationId: getUserTweetsAndReplies
|
||||
parameters:
|
||||
- in: path
|
||||
name: pathQueryId
|
||||
required: true
|
||||
schema:
|
||||
default: RIWc55YCNyUJ-U3HHGYkdg
|
||||
example: RIWc55YCNyUJ-U3HHGYkdg
|
||||
type: string
|
||||
- in: query
|
||||
name: variables
|
||||
required: true
|
||||
schema:
|
||||
default: '{"userId": "44196397", "count": 40, "includePromotedContent":
|
||||
true, "withCommunity": true, "withVoice": true, "withV2Timeline": true}'
|
||||
example: '{"userId": "44196397", "count": 40, "includePromotedContent":
|
||||
true, "withCommunity": true, "withVoice": true, "withV2Timeline": true}'
|
||||
type: string
|
||||
- in: query
|
||||
name: features
|
||||
required: true
|
||||
schema:
|
||||
default: '{"blue_business_profile_image_shape_enabled": true, "responsive_web_graphql_exclude_directive_enabled":
|
||||
true, "verified_phone_label_enabled": false, "responsive_web_graphql_timeline_navigation_enabled":
|
||||
true, "responsive_web_graphql_skip_user_profile_image_extensions_enabled":
|
||||
false, "tweetypie_unmention_optimization_enabled": true, "vibe_api_enabled":
|
||||
true, "responsive_web_edit_tweet_api_enabled": true, "graphql_is_translatable_rweb_tweet_is_translatable_enabled":
|
||||
true, "view_counts_everywhere_api_enabled": true, "longform_notetweets_consumption_enabled":
|
||||
true, "tweet_awards_web_tipping_enabled": false, "freedom_of_speech_not_reach_fetch_enabled":
|
||||
false, "standardized_nudges_misinfo": true, "tweet_with_visibility_results_prefer_gql_limited_actions_policy_enabled":
|
||||
false, "interactive_text_enabled": true, "responsive_web_text_conversations_enabled":
|
||||
false, "longform_notetweets_rich_text_read_enabled": true, "responsive_web_enhance_cards_enabled":
|
||||
false}'
|
||||
example: '{"blue_business_profile_image_shape_enabled": true, "responsive_web_graphql_exclude_directive_enabled":
|
||||
true, "verified_phone_label_enabled": false, "responsive_web_graphql_timeline_navigation_enabled":
|
||||
true, "responsive_web_graphql_skip_user_profile_image_extensions_enabled":
|
||||
false, "tweetypie_unmention_optimization_enabled": true, "vibe_api_enabled":
|
||||
true, "responsive_web_edit_tweet_api_enabled": true, "graphql_is_translatable_rweb_tweet_is_translatable_enabled":
|
||||
true, "view_counts_everywhere_api_enabled": true, "longform_notetweets_consumption_enabled":
|
||||
true, "tweet_awards_web_tipping_enabled": false, "freedom_of_speech_not_reach_fetch_enabled":
|
||||
false, "standardized_nudges_misinfo": true, "tweet_with_visibility_results_prefer_gql_limited_actions_policy_enabled":
|
||||
false, "interactive_text_enabled": true, "responsive_web_text_conversations_enabled":
|
||||
false, "longform_notetweets_rich_text_read_enabled": true, "responsive_web_enhance_cards_enabled":
|
||||
false}'
|
||||
type: string
|
||||
responses:
|
||||
'200':
|
||||
content:
|
||||
application/json:
|
||||
schema:
|
||||
$ref: '#/components/schemas/UserTweetsResponse'
|
||||
description: Successful operation
|
||||
headers:
|
||||
x-connection-hash:
|
||||
schema:
|
||||
type: string
|
||||
x-rate-limit-limit:
|
||||
schema:
|
||||
type: integer
|
||||
x-rate-limit-remaining:
|
||||
schema:
|
||||
type: integer
|
||||
x-rate-limit-reset:
|
||||
schema:
|
||||
type: integer
|
||||
x-response-time:
|
||||
schema:
|
||||
type: integer
|
||||
x-tfe-preserve-body:
|
||||
schema:
|
||||
type: boolean
|
||||
x-transaction-id:
|
||||
schema:
|
||||
type: string
|
||||
x-twitter-response-tags:
|
||||
schema:
|
||||
type: string
|
||||
tags:
|
||||
- tweet
|
||||
242
dist/compatible/paths/v1.1-get.yaml
vendored
Normal file
242
dist/compatible/paths/v1.1-get.yaml
vendored
Normal file
|
|
@ -0,0 +1,242 @@
|
|||
info:
|
||||
title: Twitter OpenAPI
|
||||
version: 0.0.1
|
||||
openapi: 3.0.3
|
||||
paths:
|
||||
/1.1/friends/following/list.json:
|
||||
get:
|
||||
description: get friends following list
|
||||
operationId: getFriendsFollowingList
|
||||
parameters:
|
||||
- in: query
|
||||
name: include_profile_interstitial_type
|
||||
required: true
|
||||
schema:
|
||||
default: 1
|
||||
example: 1
|
||||
type: integer
|
||||
- in: query
|
||||
name: include_blocking
|
||||
required: true
|
||||
schema:
|
||||
default: 1
|
||||
example: 1
|
||||
type: integer
|
||||
- in: query
|
||||
name: include_blocked_by
|
||||
required: true
|
||||
schema:
|
||||
default: 1
|
||||
example: 1
|
||||
type: integer
|
||||
- in: query
|
||||
name: include_followed_by
|
||||
required: true
|
||||
schema:
|
||||
default: 1
|
||||
example: 1
|
||||
type: integer
|
||||
- in: query
|
||||
name: include_want_retweets
|
||||
required: true
|
||||
schema:
|
||||
default: 1
|
||||
example: 1
|
||||
type: integer
|
||||
- in: query
|
||||
name: include_mute_edge
|
||||
required: true
|
||||
schema:
|
||||
default: 1
|
||||
example: 1
|
||||
type: integer
|
||||
- in: query
|
||||
name: include_can_dm
|
||||
required: true
|
||||
schema:
|
||||
default: 1
|
||||
example: 1
|
||||
type: integer
|
||||
- in: query
|
||||
name: include_can_media_tag
|
||||
required: true
|
||||
schema:
|
||||
default: 1
|
||||
example: 1
|
||||
type: integer
|
||||
- in: query
|
||||
name: include_ext_has_nft_avatar
|
||||
required: true
|
||||
schema:
|
||||
default: 1
|
||||
example: 1
|
||||
type: integer
|
||||
- in: query
|
||||
name: include_ext_is_blue_verified
|
||||
required: true
|
||||
schema:
|
||||
default: 1
|
||||
example: 1
|
||||
type: integer
|
||||
- in: query
|
||||
name: include_ext_verified_type
|
||||
required: true
|
||||
schema:
|
||||
default: 1
|
||||
example: 1
|
||||
type: integer
|
||||
- in: query
|
||||
name: include_ext_profile_image_shape
|
||||
required: true
|
||||
schema:
|
||||
default: 1
|
||||
example: 1
|
||||
type: integer
|
||||
- in: query
|
||||
name: skip_status
|
||||
required: true
|
||||
schema:
|
||||
default: 1
|
||||
example: 1
|
||||
type: integer
|
||||
- in: query
|
||||
name: cursor
|
||||
required: true
|
||||
schema:
|
||||
default: -1
|
||||
example: -1
|
||||
type: integer
|
||||
- in: query
|
||||
name: user_id
|
||||
required: true
|
||||
schema:
|
||||
default: '44196397'
|
||||
example: '44196397'
|
||||
type: string
|
||||
- in: query
|
||||
name: count
|
||||
required: true
|
||||
schema:
|
||||
default: 3
|
||||
example: 3
|
||||
type: integer
|
||||
- in: query
|
||||
name: with_total_count
|
||||
required: true
|
||||
schema:
|
||||
default: true
|
||||
example: true
|
||||
type: boolean
|
||||
responses:
|
||||
'200':
|
||||
description: Successful operation
|
||||
headers:
|
||||
status:
|
||||
schema:
|
||||
type: string
|
||||
x-access-level:
|
||||
schema:
|
||||
type: string
|
||||
x-client-event-enabled:
|
||||
schema:
|
||||
type: boolean
|
||||
x-connection-hash:
|
||||
schema:
|
||||
type: string
|
||||
x-content-type-options:
|
||||
schema:
|
||||
type: string
|
||||
x-response-time:
|
||||
schema:
|
||||
type: integer
|
||||
x-transaction:
|
||||
schema:
|
||||
type: string
|
||||
x-transaction-id:
|
||||
schema:
|
||||
type: string
|
||||
x-twitter-response-tags:
|
||||
schema:
|
||||
type: string
|
||||
tags:
|
||||
- v1.1-get
|
||||
/1.1/search/typeahead.json:
|
||||
get:
|
||||
description: get search typeahead
|
||||
operationId: getSearchTypeahead
|
||||
parameters:
|
||||
- in: query
|
||||
name: include_ext_is_blue_verified
|
||||
required: true
|
||||
schema:
|
||||
default: 1
|
||||
example: 1
|
||||
type: integer
|
||||
- in: query
|
||||
name: include_ext_verified_type
|
||||
required: true
|
||||
schema:
|
||||
default: 1
|
||||
example: 1
|
||||
type: integer
|
||||
- in: query
|
||||
name: include_ext_profile_image_shape
|
||||
required: true
|
||||
schema:
|
||||
default: 1
|
||||
example: 1
|
||||
type: integer
|
||||
- in: query
|
||||
name: q
|
||||
required: true
|
||||
schema:
|
||||
default: test
|
||||
example: test
|
||||
type: string
|
||||
- in: query
|
||||
name: src
|
||||
required: true
|
||||
schema:
|
||||
default: search_box
|
||||
example: search_box
|
||||
type: string
|
||||
- in: query
|
||||
name: result_type
|
||||
required: true
|
||||
schema:
|
||||
default: events,users,topics
|
||||
example: events,users,topics
|
||||
type: string
|
||||
responses:
|
||||
'200':
|
||||
description: Successful operation
|
||||
headers:
|
||||
status:
|
||||
schema:
|
||||
type: string
|
||||
x-access-level:
|
||||
schema:
|
||||
type: string
|
||||
x-client-event-enabled:
|
||||
schema:
|
||||
type: boolean
|
||||
x-connection-hash:
|
||||
schema:
|
||||
type: string
|
||||
x-content-type-options:
|
||||
schema:
|
||||
type: string
|
||||
x-response-time:
|
||||
schema:
|
||||
type: integer
|
||||
x-transaction:
|
||||
schema:
|
||||
type: string
|
||||
x-transaction-id:
|
||||
schema:
|
||||
type: string
|
||||
x-twitter-response-tags:
|
||||
schema:
|
||||
type: string
|
||||
tags:
|
||||
- v1.1-get
|
||||
237
dist/compatible/paths/v1.1-post.yaml
vendored
Normal file
237
dist/compatible/paths/v1.1-post.yaml
vendored
Normal file
|
|
@ -0,0 +1,237 @@
|
|||
info:
|
||||
title: Twitter OpenAPI
|
||||
version: 0.0.1
|
||||
openapi: 3.0.3
|
||||
paths:
|
||||
/1.1/friendships/create.json:
|
||||
post:
|
||||
description: post create friendships
|
||||
operationId: postCreateFriendships
|
||||
parameters: []
|
||||
requestBody:
|
||||
content:
|
||||
application/x-www-form-urlencoded:
|
||||
schema:
|
||||
properties:
|
||||
include_blocked_by:
|
||||
default: 1
|
||||
example: 1
|
||||
type: integer
|
||||
include_blocking:
|
||||
default: 1
|
||||
example: 1
|
||||
type: integer
|
||||
include_can_dm:
|
||||
default: 1
|
||||
example: 1
|
||||
type: integer
|
||||
include_can_media_tag:
|
||||
default: 1
|
||||
example: 1
|
||||
type: integer
|
||||
include_ext_has_nft_avatar:
|
||||
default: 1
|
||||
example: 1
|
||||
type: integer
|
||||
include_ext_is_blue_verified:
|
||||
default: 1
|
||||
example: 1
|
||||
type: integer
|
||||
include_ext_profile_image_shape:
|
||||
default: 1
|
||||
example: 1
|
||||
type: integer
|
||||
include_ext_verified_type:
|
||||
default: 1
|
||||
example: 1
|
||||
type: integer
|
||||
include_followed_by:
|
||||
default: 1
|
||||
example: 1
|
||||
type: integer
|
||||
include_mute_edge:
|
||||
default: 1
|
||||
example: 1
|
||||
type: integer
|
||||
include_profile_interstitial_type:
|
||||
default: 1
|
||||
example: 1
|
||||
type: integer
|
||||
include_want_retweets:
|
||||
default: 1
|
||||
example: 1
|
||||
type: integer
|
||||
skip_status:
|
||||
default: 1
|
||||
example: 1
|
||||
type: integer
|
||||
user_id:
|
||||
default: '44196397'
|
||||
example: '44196397'
|
||||
type: string
|
||||
required:
|
||||
- include_profile_interstitial_type
|
||||
- include_blocking
|
||||
- include_blocked_by
|
||||
- include_followed_by
|
||||
- include_want_retweets
|
||||
- include_mute_edge
|
||||
- include_can_dm
|
||||
- include_can_media_tag
|
||||
- include_ext_has_nft_avatar
|
||||
- include_ext_is_blue_verified
|
||||
- include_ext_verified_type
|
||||
- include_ext_profile_image_shape
|
||||
- skip_status
|
||||
- user_id
|
||||
description: body
|
||||
required: true
|
||||
responses:
|
||||
'200':
|
||||
description: Successful operation
|
||||
headers:
|
||||
status:
|
||||
schema:
|
||||
type: string
|
||||
x-access-level:
|
||||
schema:
|
||||
type: string
|
||||
x-client-event-enabled:
|
||||
schema:
|
||||
type: boolean
|
||||
x-connection-hash:
|
||||
schema:
|
||||
type: string
|
||||
x-content-type-options:
|
||||
schema:
|
||||
type: string
|
||||
x-response-time:
|
||||
schema:
|
||||
type: integer
|
||||
x-transaction:
|
||||
schema:
|
||||
type: string
|
||||
x-transaction-id:
|
||||
schema:
|
||||
type: string
|
||||
x-twitter-response-tags:
|
||||
schema:
|
||||
type: string
|
||||
tags:
|
||||
- v1.1-post
|
||||
/1.1/friendships/destroy.json:
|
||||
post:
|
||||
description: post destroy friendships
|
||||
operationId: postDestroyFriendships
|
||||
parameters: []
|
||||
requestBody:
|
||||
content:
|
||||
application/x-www-form-urlencoded:
|
||||
schema:
|
||||
properties:
|
||||
include_blocked_by:
|
||||
default: 1
|
||||
example: 1
|
||||
type: integer
|
||||
include_blocking:
|
||||
default: 1
|
||||
example: 1
|
||||
type: integer
|
||||
include_can_dm:
|
||||
default: 1
|
||||
example: 1
|
||||
type: integer
|
||||
include_can_media_tag:
|
||||
default: 1
|
||||
example: 1
|
||||
type: integer
|
||||
include_ext_has_nft_avatar:
|
||||
default: 1
|
||||
example: 1
|
||||
type: integer
|
||||
include_ext_is_blue_verified:
|
||||
default: 1
|
||||
example: 1
|
||||
type: integer
|
||||
include_ext_profile_image_shape:
|
||||
default: 1
|
||||
example: 1
|
||||
type: integer
|
||||
include_ext_verified_type:
|
||||
default: 1
|
||||
example: 1
|
||||
type: integer
|
||||
include_followed_by:
|
||||
default: 1
|
||||
example: 1
|
||||
type: integer
|
||||
include_mute_edge:
|
||||
default: 1
|
||||
example: 1
|
||||
type: integer
|
||||
include_profile_interstitial_type:
|
||||
default: 1
|
||||
example: 1
|
||||
type: integer
|
||||
include_want_retweets:
|
||||
default: 1
|
||||
example: 1
|
||||
type: integer
|
||||
skip_status:
|
||||
default: 1
|
||||
example: 1
|
||||
type: integer
|
||||
user_id:
|
||||
default: '44196397'
|
||||
example: '44196397'
|
||||
type: string
|
||||
required:
|
||||
- include_profile_interstitial_type
|
||||
- include_blocking
|
||||
- include_blocked_by
|
||||
- include_followed_by
|
||||
- include_want_retweets
|
||||
- include_mute_edge
|
||||
- include_can_dm
|
||||
- include_can_media_tag
|
||||
- include_ext_has_nft_avatar
|
||||
- include_ext_is_blue_verified
|
||||
- include_ext_verified_type
|
||||
- include_ext_profile_image_shape
|
||||
- skip_status
|
||||
- user_id
|
||||
description: body
|
||||
required: true
|
||||
responses:
|
||||
'200':
|
||||
description: Successful operation
|
||||
headers:
|
||||
status:
|
||||
schema:
|
||||
type: string
|
||||
x-access-level:
|
||||
schema:
|
||||
type: string
|
||||
x-client-event-enabled:
|
||||
schema:
|
||||
type: boolean
|
||||
x-connection-hash:
|
||||
schema:
|
||||
type: string
|
||||
x-content-type-options:
|
||||
schema:
|
||||
type: string
|
||||
x-response-time:
|
||||
schema:
|
||||
type: integer
|
||||
x-transaction:
|
||||
schema:
|
||||
type: string
|
||||
x-transaction-id:
|
||||
schema:
|
||||
type: string
|
||||
x-twitter-response-tags:
|
||||
schema:
|
||||
type: string
|
||||
tags:
|
||||
- v1.1-post
|
||||
302
dist/compatible/paths/v2.0-get.yaml
vendored
Normal file
302
dist/compatible/paths/v2.0-get.yaml
vendored
Normal file
|
|
@ -0,0 +1,302 @@
|
|||
info:
|
||||
title: Twitter OpenAPI
|
||||
version: 0.0.1
|
||||
openapi: 3.0.3
|
||||
paths:
|
||||
/2/search/adaptive.json:
|
||||
get:
|
||||
description: get search adaptive
|
||||
operationId: getSearchAdaptive
|
||||
parameters:
|
||||
- in: query
|
||||
name: include_profile_interstitial_type
|
||||
required: true
|
||||
schema:
|
||||
default: 1
|
||||
example: 1
|
||||
type: integer
|
||||
- in: query
|
||||
name: include_blocking
|
||||
required: true
|
||||
schema:
|
||||
default: 1
|
||||
example: 1
|
||||
type: integer
|
||||
- in: query
|
||||
name: include_blocked_by
|
||||
required: true
|
||||
schema:
|
||||
default: 1
|
||||
example: 1
|
||||
type: integer
|
||||
- in: query
|
||||
name: include_followed_by
|
||||
required: true
|
||||
schema:
|
||||
default: 1
|
||||
example: 1
|
||||
type: integer
|
||||
- in: query
|
||||
name: include_want_retweets
|
||||
required: true
|
||||
schema:
|
||||
default: 1
|
||||
example: 1
|
||||
type: integer
|
||||
- in: query
|
||||
name: include_mute_edge
|
||||
required: true
|
||||
schema:
|
||||
default: 1
|
||||
example: 1
|
||||
type: integer
|
||||
- in: query
|
||||
name: include_can_dm
|
||||
required: true
|
||||
schema:
|
||||
default: 1
|
||||
example: 1
|
||||
type: integer
|
||||
- in: query
|
||||
name: include_can_media_tag
|
||||
required: true
|
||||
schema:
|
||||
default: 1
|
||||
example: 1
|
||||
type: integer
|
||||
- in: query
|
||||
name: include_ext_has_nft_avatar
|
||||
required: true
|
||||
schema:
|
||||
default: 1
|
||||
example: 1
|
||||
type: integer
|
||||
- in: query
|
||||
name: include_ext_is_blue_verified
|
||||
required: true
|
||||
schema:
|
||||
default: 1
|
||||
example: 1
|
||||
type: integer
|
||||
- in: query
|
||||
name: include_ext_verified_type
|
||||
required: true
|
||||
schema:
|
||||
default: 1
|
||||
example: 1
|
||||
type: integer
|
||||
- in: query
|
||||
name: include_ext_profile_image_shape
|
||||
required: true
|
||||
schema:
|
||||
default: 1
|
||||
example: 1
|
||||
type: integer
|
||||
- in: query
|
||||
name: skip_status
|
||||
required: true
|
||||
schema:
|
||||
default: 1
|
||||
example: 1
|
||||
type: integer
|
||||
- in: query
|
||||
name: cards_platform
|
||||
required: true
|
||||
schema:
|
||||
default: Web-12
|
||||
example: Web-12
|
||||
type: string
|
||||
- in: query
|
||||
name: include_cards
|
||||
required: true
|
||||
schema:
|
||||
default: 1
|
||||
example: 1
|
||||
type: integer
|
||||
- in: query
|
||||
name: include_ext_alt_text
|
||||
required: true
|
||||
schema:
|
||||
default: true
|
||||
example: true
|
||||
type: boolean
|
||||
- in: query
|
||||
name: include_ext_limited_action_results
|
||||
required: true
|
||||
schema:
|
||||
default: false
|
||||
example: false
|
||||
type: boolean
|
||||
- in: query
|
||||
name: include_quote_count
|
||||
required: true
|
||||
schema:
|
||||
default: true
|
||||
example: true
|
||||
type: boolean
|
||||
- in: query
|
||||
name: include_reply_count
|
||||
required: true
|
||||
schema:
|
||||
default: 1
|
||||
example: 1
|
||||
type: integer
|
||||
- in: query
|
||||
name: tweet_mode
|
||||
required: true
|
||||
schema:
|
||||
default: extended
|
||||
example: extended
|
||||
type: string
|
||||
- in: query
|
||||
name: include_ext_views
|
||||
required: true
|
||||
schema:
|
||||
default: true
|
||||
example: true
|
||||
type: boolean
|
||||
- in: query
|
||||
name: include_entities
|
||||
required: true
|
||||
schema:
|
||||
default: true
|
||||
example: true
|
||||
type: boolean
|
||||
- in: query
|
||||
name: include_user_entities
|
||||
required: true
|
||||
schema:
|
||||
default: true
|
||||
example: true
|
||||
type: boolean
|
||||
- in: query
|
||||
name: include_ext_media_color
|
||||
required: true
|
||||
schema:
|
||||
default: true
|
||||
example: true
|
||||
type: boolean
|
||||
- in: query
|
||||
name: include_ext_media_availability
|
||||
required: true
|
||||
schema:
|
||||
default: true
|
||||
example: true
|
||||
type: boolean
|
||||
- in: query
|
||||
name: include_ext_sensitive_media_warning
|
||||
required: true
|
||||
schema:
|
||||
default: true
|
||||
example: true
|
||||
type: boolean
|
||||
- in: query
|
||||
name: include_ext_trusted_friends_metadata
|
||||
required: true
|
||||
schema:
|
||||
default: true
|
||||
example: true
|
||||
type: boolean
|
||||
- in: query
|
||||
name: send_error_codes
|
||||
required: true
|
||||
schema:
|
||||
default: true
|
||||
example: true
|
||||
type: boolean
|
||||
- in: query
|
||||
name: simple_quoted_tweet
|
||||
required: true
|
||||
schema:
|
||||
default: true
|
||||
example: true
|
||||
type: boolean
|
||||
- in: query
|
||||
name: q
|
||||
required: true
|
||||
schema:
|
||||
default: elon musk
|
||||
example: elon musk
|
||||
type: string
|
||||
- in: query
|
||||
name: query_source
|
||||
required: true
|
||||
schema:
|
||||
default: trend_click
|
||||
example: trend_click
|
||||
type: string
|
||||
- in: query
|
||||
name: count
|
||||
required: true
|
||||
schema:
|
||||
default: 20
|
||||
example: 20
|
||||
type: integer
|
||||
- in: query
|
||||
name: requestContext
|
||||
required: true
|
||||
schema:
|
||||
default: launch
|
||||
example: launch
|
||||
type: string
|
||||
- in: query
|
||||
name: pc
|
||||
required: true
|
||||
schema:
|
||||
default: 1
|
||||
example: 1
|
||||
type: integer
|
||||
- in: query
|
||||
name: spelling_corrections
|
||||
required: true
|
||||
schema:
|
||||
default: 1
|
||||
example: 1
|
||||
type: integer
|
||||
- in: query
|
||||
name: include_ext_edit_control
|
||||
required: true
|
||||
schema:
|
||||
default: true
|
||||
example: true
|
||||
type: boolean
|
||||
- in: query
|
||||
name: ext
|
||||
required: true
|
||||
schema:
|
||||
default: mediaStats,highlightedLabel,hasNftAvatar,voiceInfo,birdwatchPivot,enrichments,superFollowMetadata,unmentionInfo,editControl,vibe
|
||||
example: mediaStats,highlightedLabel,hasNftAvatar,voiceInfo,birdwatchPivot,enrichments,superFollowMetadata,unmentionInfo,editControl,vibe
|
||||
type: string
|
||||
responses:
|
||||
'200':
|
||||
description: Successful operation
|
||||
headers:
|
||||
status:
|
||||
schema:
|
||||
type: string
|
||||
x-access-level:
|
||||
schema:
|
||||
type: string
|
||||
x-client-event-enabled:
|
||||
schema:
|
||||
type: boolean
|
||||
x-connection-hash:
|
||||
schema:
|
||||
type: string
|
||||
x-content-type-options:
|
||||
schema:
|
||||
type: string
|
||||
x-response-time:
|
||||
schema:
|
||||
type: integer
|
||||
x-transaction:
|
||||
schema:
|
||||
type: string
|
||||
x-transaction-id:
|
||||
schema:
|
||||
type: string
|
||||
x-twitter-response-tags:
|
||||
schema:
|
||||
type: string
|
||||
tags:
|
||||
- v2.0-get
|
||||
Loading…
Add table
Add a link
Reference in a new issue