aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/extractor/vevo.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2017-04-30 17:58:22 +0700
committerSergey M․ <dstftw@gmail.com>2017-04-30 17:58:22 +0700
commitb07ea5eaecd6e3ab3a31c996ec815682efaf8edb (patch)
treeab2e13bd4ca6eb552ad110aa9435f19427a9dd69 /youtube_dl/extractor/vevo.py
parent559925300959669a08456475650a42f395385372 (diff)
downloadyoutube-dl-b07ea5eaecd6e3ab3a31c996ec815682efaf8edb.zip
youtube-dl-b07ea5eaecd6e3ab3a31c996ec815682efaf8edb.tar.gz
youtube-dl-b07ea5eaecd6e3ab3a31c996ec815682efaf8edb.tar.bz2
[vevo] Modernize
Diffstat (limited to 'youtube_dl/extractor/vevo.py')
-rw-r--r--youtube_dl/extractor/vevo.py21
1 files changed, 9 insertions, 12 deletions
diff --git a/youtube_dl/extractor/vevo.py b/youtube_dl/extractor/vevo.py
index 9434cd5..890a149 100644
--- a/youtube_dl/extractor/vevo.py
+++ b/youtube_dl/extractor/vevo.py
@@ -12,7 +12,6 @@ from ..compat import (
from ..utils import (
ExtractorError,
int_or_none,
- sanitized_Request,
parse_iso8601,
)
@@ -155,19 +154,17 @@ class VevoIE(VevoBaseIE):
}
def _initialize_api(self, video_id):
- post_data = json.dumps({
- 'client_id': 'SPupX1tvqFEopQ1YS6SS',
- 'grant_type': 'urn:vevo:params:oauth:grant-type:anonymous',
- }).encode('utf-8')
- headers = {
- 'Content-Type': 'application/json',
- }
- req = sanitized_Request(
- 'https://accounts.vevo.com/token', post_data, headers)
webpage = self._download_webpage(
- req, None,
+ 'https://accounts.vevo.com/token', None,
note='Retrieving oauth token',
- errnote='Unable to retrieve oauth token')
+ errnote='Unable to retrieve oauth token',
+ data=json.dumps({
+ 'client_id': 'SPupX1tvqFEopQ1YS6SS',
+ 'grant_type': 'urn:vevo:params:oauth:grant-type:anonymous',
+ }).encode('utf-8'),
+ headers={
+ 'Content-Type': 'application/json',
+ })
if re.search(r'(?i)THIS PAGE IS CURRENTLY UNAVAILABLE IN YOUR REGION', webpage):
self.raise_geo_restricted(