diff options
author | Markus Heiser <markus.heiser@darmarIT.de> | 2020-01-28 10:59:03 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-28 10:59:03 +0000 |
commit | e64ff38217a1ba49afd4bb1c595121d94cbb2e33 (patch) | |
tree | d8461b0392143da9d8ec9ae598b8a12c50914104 /searx/engines/spotify.py | |
parent | 0e7b6c9a032d67bf5cbdcfc062d8466c18a62abd (diff) | |
parent | bda189565589b0065152f5a9fba4565404f9bd9a (diff) | |
download | searxng-e64ff38217a1ba49afd4bb1c595121d94cbb2e33.tar.gz searxng-e64ff38217a1ba49afd4bb1c595121d94cbb2e33.zip |
Merge branch 'master' into fix-infinite-scroll
Diffstat (limited to 'searx/engines/spotify.py')
-rw-r--r-- | searx/engines/spotify.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/searx/engines/spotify.py b/searx/engines/spotify.py index aed756be3..00c395706 100644 --- a/searx/engines/spotify.py +++ b/searx/engines/spotify.py @@ -12,10 +12,14 @@ from json import loads from searx.url_utils import urlencode +import requests +import base64 # engine dependent config categories = ['music'] paging = True +api_client_id = None +api_client_secret = None # search-url url = 'https://api.spotify.com/' @@ -31,6 +35,16 @@ def request(query, params): params['url'] = search_url.format(query=urlencode({'q': query}), offset=offset) + r = requests.post( + 'https://accounts.spotify.com/api/token', + data={'grant_type': 'client_credentials'}, + headers={'Authorization': 'Basic ' + base64.b64encode( + "{}:{}".format(api_client_id, api_client_secret).encode('utf-8') + ).decode('utf-8')} + ) + j = loads(r.text) + params['headers'] = {'Authorization': 'Bearer {}'.format(j.get('access_token'))} + return params |