ndyanx
ndyanx
> ¿Tiene una URL de ejemplo protegida con contraseña que estaría dispuesto a agregar como caso de prueba (incluida la contraseña)? > > Está bien si no es así (tengo...
thanks @bashonly , I’ll need to fix my patches regarding the formatting.
optional tiktok.py in class TikTokIE(TikTokBaseIE): _real_extract: change: ``` video_data, status = self._extract_web_data_and_status(url, video_id) ``` -> ``` try: video_data, status = self._extract_web_data_and_status(url, video_id) except Exception: return self._parse_aweme_video_web({}, url, video_id) ``` in...
This is a temporary solution to obtain the JSON from another location without using a VPN. Patch for [#stripchat.py](https://github.com/lossless1024/StreaMonitor/blob/master/streamonitor/sites/stripchat.py#L143) ``` def getStatus(self): url = f'https://stripchat.com/api/front/v2/models/username/{self.username}/cam?uniq={StripChat.uniq()}' r = requests.get( url, headers=self.headers...