received 500 HTTP response
### Describe the Bug
I have a script running to pull submissions in a loop. While running successfully for days it will randomly start outputting "received 500 HTTP response".
### Desired Result
Code should run normally, without any error messages.
### Code to reproduce the bug
```Python
reddit = praw.Reddit(
client_id='',
client_secret='',
password='',
user_agent='windows:program:v3 (by u/user)',
username='',
)
reddit.read_only=True
sub_reddit = reddit.subreddit('all')
for submission in reddit.info(fullnames=ids_fr):
Where ids_fr is a list of submission IDs formatted like
ids_fr = ['t3_1jvbdta', 't3_1jvbdtc']
```
### My code does not include sensitive credentials
- [x] Yes, I have removed sensitive credentials from my code.
### Relevant Logs
```Shell
2025-04-22 03:17:07,596 - INFO: received 500 HTTP response
2025-04-22 03:37:19,194 - INFO: received 500 HTTP response
```
### This code has previously worked as intended
Yes
### Operating System/Environment
Windows 11
### Python Version
3.12.10
### PRAW Version
7.8.1
### Links, references, and/or additional comments?
_No response_
关闭于 2025-04-30 1 条评论