You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The OOAi provider has a problem with Captcha, so the data does not arrive in the right form.
From the provider Discord Rocks is having a problem: decoded_line = line.decode('UTF-8') ^^^^^^^^^^^^^^^^^^^^ UnicodeDecodeError: 'utf-8' codec can't decode byte 0xb5 in position 1: invalid start byte 0xb5.
Example of a string that comes in response to a request: b"(\xb5/\xfd\x04X\xe4\x07\x00VR8#0\x8bV\x07@F\xbc$\x80\x88\x9c>d\xf6\x85\xdc\xb
c\xd1P\x19\xe9A]\x01A\x87=9\xa3\x07\x05\\x07,\x00-\x000\x00\x97\xa8'\xb3bL\x
e7\xe9\xbdG\xd5\xe3c\x192\xfb\x9e\x10\xea\x90l\xea\x9e\x0e\xb7\xe3\xd5u\xe3JV\x
9a\xe8\xd4-\x97(\xa8\xc7dn\x1bvIo\xf9\xe9\x02\x07\x90\x00\xc4\xcb\x9c\x88\xb3\x
e9E\x11]\x88\x13\xd0\xa1\x1f\xa8\x0e1\xba\x0f\xed6\xe2EM\x9f]P\xaf\xa2\x97m\x11
\xae\xde\x9a\xad\xcb\x02\x0c\x8f}\xfa\xd5_\xb6u\x9eN\xa0H\x0c<\xe8\xb0^"
I printed the headers and saw that the data could be compressed by the zstd algorithm, but I couldn't convert this string into a readable one, again, there may be a problem with Captcha.
To Reproduce
Steps to reproduce the behavior:
Go to 'Webscout-Provider-AISEARCH-ooai.py'
Open file and run code
See error: Empty string
For Discord Rocks:
Go to 'Webscout-Provider-DiscordRocks.py'
Open file and run code
See error:
decoded_line = line.decode('UTF-8')
^^^^^^^^^^^^^^^^^^^^
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xb5 in position 1: invalid start byte
Desktop (please complete the following information):
OS: Windows 10
Webscout version: 6.6
The text was updated successfully, but these errors were encountered:
Problem with providers
The OOAi provider has a problem with Captcha, so the data does not arrive in the right form.
From the provider Discord Rocks is having a problem: decoded_line = line.decode('UTF-8') ^^^^^^^^^^^^^^^^^^^^ UnicodeDecodeError: 'utf-8' codec can't decode byte 0xb5 in position 1: invalid start byte 0xb5.
Example of a string that comes in response to a request: b"(\xb5/\xfd\x04X\xe4\x07\x00VR8#0\x8bV\x07@F\xbc$\x80\x88\x9c>d\xf6\x85\xdc\xb
c\xd1P\x19\xe9A]\x01A\x87=9\xa3\x07\x05\\x07,\x00-\x000\x00\x97\xa8'\xb3bL\x
e7\xe9\xbdG\xd5\xe3c\x192\xfb\x9e\x10\xea\x90l\xea\x9e\x0e\xb7\xe3\xd5u\xe3JV\x
9a\xe8\xd4-\x97(\xa8\xc7dn\x1bvIo\xf9\xe9\x02\x07\x90\x00\xc4\xcb\x9c\x88\xb3\x
e9E\x11]\x88\x13\xd0\xa1\x1f\xa8\x0e1\xba\x0f\xed6\xe2EM\x9f]P\xaf\xa2\x97m\x11
\xae\xde\x9a\xad\xcb\x02\x0c\x8f}\xfa\xd5_\xb6u\x9eN\xa0H\x0c<\xe8\xb0^"
I printed the headers and saw that the data could be compressed by the zstd algorithm, but I couldn't convert this string into a readable one, again, there may be a problem with Captcha.
To Reproduce
Steps to reproduce the behavior:
For Discord Rocks:
decoded_line = line.decode('UTF-8')
^^^^^^^^^^^^^^^^^^^^
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xb5 in position 1: invalid start byte
Desktop (please complete the following information):
The text was updated successfully, but these errors were encountered: