mirror of
				https://github.com/ytdl-org/youtube-dl
				synced 2025-11-04 03:33:46 +00:00 
			
		
		
		
	replace split with strip_jsonp
This commit is contained in:
		
							parent
							
								
									5c97ec5ff5
								
							
						
					
					
						commit
						6a41a12d29
					
				@ -12,6 +12,7 @@ from ..compat import (
 | 
			
		||||
)
 | 
			
		||||
from ..utils import (
 | 
			
		||||
    js_to_json,
 | 
			
		||||
    strip_jsonp,
 | 
			
		||||
    urlencode_postdata,
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
@ -52,7 +53,7 @@ class WeiboIE(InfoExtractor):
 | 
			
		||||
        genvisitor_url = 'https://passport.weibo.com/visitor/genvisitor'
 | 
			
		||||
        webpage, _ = self._download_webpage_handle(genvisitor_url, video_id, data=data, headers=headers, note="gen visitor")
 | 
			
		||||
 | 
			
		||||
        p = webpage.split("&&")[1]  # split "gen_callback && gen_callback(...)"
 | 
			
		||||
        p = strip_jsonp(webpage)
 | 
			
		||||
        i1 = p.find('{')
 | 
			
		||||
        i2 = p.rfind('}')
 | 
			
		||||
        j = p[i1:i2 + 1]  # get JSON object
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user