-
Notifications
You must be signed in to change notification settings - Fork 167
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
403 Forbidden in fetch_user() #744
Comments
is this perhaps related to #500 ..? |
I have also run into this issue. I can run it on my main PC but I can't do it on the server I rented. So weird. Log :
Code :
|
i have the same error |
Smells like more TLS fingerprinting. Can you check with the refactor/tls branch? |
I cant seem to run it sadly. I am not smart enough to figure out what I am doing wrong here.
|
This fixes it for me.
Doesn't work with |
Sounds good, I'll make that branch a priority when I have time |
Thanks, it worked!
Fixes it for me as well. |
now get_channel() also gives the same error sadly. |
That doesn't make sense, that just looks up from cache |
sorry just checked! my bad, while trying to merge two folder, i accidentally switched up file containing the channel id with one with old channel id. (since my code attempted to fetch dms as well with try-except to handle that error, i thought it was sorry again! Is working just fine. |
|
Summary
fetching dms failed.
Reproduction Steps
Running the code below, gave 403 error.
Code
Expected Results
it is suppossed to fetch user with id "408785106942164992" then create a dm.
Actual Results
System Information
Checklist
Additional Information
This code was working fine yesterday and other users seems to be also having this issue today. Iam new to posting issues, so do be understanding of any mistakes in this and feel free to ask if i need to provide any additional information
(and yes the bot's dm we are trying to fetch and create dm is accessable, i even dmed the bot manually and tried running the code to see if that fixed the issue.)
Note: the issue here is with fetching the channel, not creating the dm
i have tried replacing
self.dm = await (await self.fetch_user(408785106942164992)).create_dm()
with
self.dm = await self.fetch_user(408785106942164992)
still same result...
Thanks!
The text was updated successfully, but these errors were encountered: