[twitter] remove '/search/adaptive.json'
This commit is contained in:
@@ -3230,19 +3230,6 @@ Description
|
|||||||
will be taken from the original Tweets, not the Retweets.
|
will be taken from the original Tweets, not the Retweets.
|
||||||
|
|
||||||
|
|
||||||
extractor.twitter.search-endpoint
|
|
||||||
---------------------------------
|
|
||||||
Type
|
|
||||||
``string``
|
|
||||||
Default
|
|
||||||
``"graphql"``
|
|
||||||
Description
|
|
||||||
Selects the API endpoint used to retrieve search results.
|
|
||||||
|
|
||||||
* ``"graphql"``: GraphQL endpoint
|
|
||||||
* ``"rest"``: Legacy REST endpoint
|
|
||||||
|
|
||||||
|
|
||||||
extractor.twitter.timeline.strategy
|
extractor.twitter.timeline.strategy
|
||||||
-----------------------------------
|
-----------------------------------
|
||||||
Type
|
Type
|
||||||
|
|||||||
@@ -1085,10 +1085,6 @@ class TwitterAPI():
|
|||||||
|
|
||||||
auth_token = cookies.get("auth_token", domain=cookiedomain)
|
auth_token = cookies.get("auth_token", domain=cookiedomain)
|
||||||
|
|
||||||
search = extractor.config("search-endpoint")
|
|
||||||
if search == "rest":
|
|
||||||
self.search_timeline = self.search_adaptive
|
|
||||||
|
|
||||||
self.headers = {
|
self.headers = {
|
||||||
"Accept": "*/*",
|
"Accept": "*/*",
|
||||||
"authorization": "Bearer AAAAAAAAAAAAAAAAAAAAANRILgAAAAAAnNwIzUejR"
|
"authorization": "Bearer AAAAAAAAAAAAAAAAAAAAANRILgAAAAAAnNwIzUejR"
|
||||||
@@ -1324,16 +1320,6 @@ class TwitterAPI():
|
|||||||
return self._pagination_tweets(
|
return self._pagination_tweets(
|
||||||
endpoint, variables, ("list", "tweets_timeline", "timeline"))
|
endpoint, variables, ("list", "tweets_timeline", "timeline"))
|
||||||
|
|
||||||
def search_adaptive(self, query):
|
|
||||||
endpoint = "/2/search/adaptive.json"
|
|
||||||
params = self.params.copy()
|
|
||||||
params["q"] = query
|
|
||||||
params["tweet_search_mode"] = "live"
|
|
||||||
params["query_source"] = "typed_query"
|
|
||||||
params["pc"] = "1"
|
|
||||||
params["spelling_corrections"] = "1"
|
|
||||||
return self._pagination_legacy(endpoint, params)
|
|
||||||
|
|
||||||
def search_timeline(self, query):
|
def search_timeline(self, query):
|
||||||
endpoint = "/graphql/7jT5GT59P8IFjgxwqnEdQw/SearchTimeline"
|
endpoint = "/graphql/7jT5GT59P8IFjgxwqnEdQw/SearchTimeline"
|
||||||
variables = {
|
variables = {
|
||||||
|
|||||||
@@ -6,4 +6,4 @@
|
|||||||
# it under the terms of the GNU General Public License version 2 as
|
# it under the terms of the GNU General Public License version 2 as
|
||||||
# published by the Free Software Foundation.
|
# published by the Free Software Foundation.
|
||||||
|
|
||||||
__version__ = "1.25.8"
|
__version__ = "1.26.0-dev"
|
||||||
|
|||||||
Reference in New Issue
Block a user