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
Can someone help? A long time ago, I followed this guide, respect to the creator. I got the badge the next day, but then about a month later, they took it back. I don’t really remember, maybe I turned off the “Share data with Discord” switch, but now I decided to try again. I did everything with the same bot on the same server, but even after a week, the page still says that I are not eligible for the Active Developer Badge. I created a new server and a new application, thinking maybe they suspected it was abuse, but now I can’t run the script. When I run the executable on Windows, after entering the token, it gives some kind of response, and the window closes in less than half a second. I tried using Python and realized that running Python on Windows is already a problem. I opened it on my Mac, where I’ve never had Python issues before, and yet here we are. I’m not an expert in Python, but I occasionally have to run and fix other people’s scripts, and now I’m stuck. It seems logical that the issue is with the modules, and judging by the traceback path, I think the problem is with requests.
�[30;1m2024-08-28 13:35:30�[0m �[34;1mINFO �[0m �[35mdiscord.client�[0m logging in using static token
Traceback (most recent call last):
File "/Library/Frameworks/Python.framework/Versions/3.12/lib/python3.12/site-packages/aiohttp/connector.py", line 1080, in _wrap_create_connection
return await self._loop.create_connection(*args, **kwargs, sock=sock)
File "/Library/Frameworks/Python.framework/Versions/3.12/lib/python3.12/asyncio/base_events.py", line 1149, in create_connection
transport, protocol = await self._create_connection_transport(
File "/Library/Frameworks/Python.framework/Versions/3.12/lib/python3.12/asyncio/base_events.py", line 1182, in _create_connection_transport
await waiter
File "/Library/Frameworks/Python.framework/Versions/3.12/lib/python3.12/asyncio/sslproto.py", line 578, in _on_handshake_complete
raise handshake_exc
File "/Library/Frameworks/Python.framework/Versions/3.12/lib/python3.12/asyncio/sslproto.py", line 560, in _do_handshake
self._sslobj.do_handshake()
File "/Library/Frameworks/Python.framework/Versions/3.12/lib/python3.12/ssl.py", line 917, in do_handshake
self._sslobj.do_handshake()
ssl.SSLCertVerificationError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1000)
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/Users/i/Downloads/discord-badge-1.2/discord-badge-1.2/main.py", line 91, in <module>
client.run(token)
File "/Library/Frameworks/Python.framework/Versions/3.12/lib/python3.12/site-packages/discord/client.py", line 869, in run
asyncio.run(runner())
File "/Library/Frameworks/Python.framework/Versions/3.12/lib/python3.12/asyncio/runners.py", line 194, in run
return runner.run(main)
File "/Library/Frameworks/Python.framework/Versions/3.12/lib/python3.12/asyncio/runners.py", line 118, in run
return self._loop.run_until_complete(task)
File "/Library/Frameworks/Python.framework/Versions/3.12/lib/python3.12/asyncio/base_events.py", line 687, in run_until_complete
return future.result()
File "/Library/Frameworks/Python.framework/Versions/3.12/lib/python3.12/site-packages/discord/client.py", line 858, in runner
await self.start(token, reconnect=reconnect)
File "/Library/Frameworks/Python.framework/Versions/3.12/lib/python3.12/site-packages/discord/client.py", line 786, in start
await self.login(token)
File "/Library/Frameworks/Python.framework/Versions/3.12/lib/python3.12/site-packages/discord/client.py", line 620, in login
data = await self.http.static_login(token)
File "/Library/Frameworks/Python.framework/Versions/3.12/lib/python3.12/site-packages/discord/http.py", line 816, in static_login
data = await self.request(Route('GET', '/users/@me'))
File "/Library/Frameworks/Python.framework/Versions/3.12/lib/python3.12/site-packages/discord/http.py", line 638, in request
async with self.__session.request(method, url, **kwargs) as response:
File "/Library/Frameworks/Python.framework/Versions/3.12/lib/python3.12/site-packages/aiohttp/client.py", line 1353, in __aenter__
self._resp = await self._coro
File "/Library/Frameworks/Python.framework/Versions/3.12/lib/python3.12/site-packages/aiohttp/client.py", line 657, in _request
conn = await self._connector.connect(
File "/Library/Frameworks/Python.framework/Versions/3.12/lib/python3.12/site-packages/aiohttp/connector.py", line 564, in connect
proto = await self._create_connection(req, traces, timeout)
File "/Library/Frameworks/Python.framework/Versions/3.12/lib/python3.12/site-packages/aiohttp/connector.py", line 975, in _create_connection
_, proto = await self._create_direct_connection(req, traces, timeout)
File "/Library/Frameworks/Python.framework/Versions/3.12/lib/python3.12/site-packages/aiohttp/connector.py", line 1350, in _create_direct_connection
raise last_exc
File "/Library/Frameworks/Python.framework/Versions/3.12/lib/python3.12/site-packages/aiohttp/connector.py", line 1319, in _create_direct_connection
transp, proto = await self._wrap_create_connection(
File "/Library/Frameworks/Python.framework/Versions/3.12/lib/python3.12/site-packages/aiohttp/connector.py", line 1082, in _wrap_create_connection
raise ClientConnectorCertificateError(req.connection_key, exc) from exc
aiohttp.client_exceptions.ClientConnectorCertificateError: Cannot connect to host discord.com:443 ssl:True [SSLCertVerificationError: (1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1000)')]
The text was updated successfully, but these errors were encountered:
Can someone help? A long time ago, I followed this guide, respect to the creator. I got the badge the next day, but then about a month later, they took it back. I don’t really remember, maybe I turned off the “Share data with Discord” switch, but now I decided to try again. I did everything with the same bot on the same server, but even after a week, the page still says that I are not eligible for the Active Developer Badge. I created a new server and a new application, thinking maybe they suspected it was abuse, but now I can’t run the script. When I run the executable on Windows, after entering the token, it gives some kind of response, and the window closes in less than half a second. I tried using Python and realized that running Python on Windows is already a problem. I opened it on my Mac, where I’ve never had Python issues before, and yet here we are. I’m not an expert in Python, but I occasionally have to run and fix other people’s scripts, and now I’m stuck. It seems logical that the issue is with the modules, and judging by the traceback path, I think the problem is with requests.
The text was updated successfully, but these errors were encountered: