carsonwilliamsdev / bawt

My Discord Bot
MIT License
5 stars 0 forks source link

Reddit Quote is only pulling 100 results #8

Open carsonwilliamsdev opened 6 years ago

carsonwilliamsdev commented 6 years ago

The reddit quoter is only pulling 100 results. Limit is set to 10000, but when you plug that value into the request URL you only get 100 results.

carsonwilliamsdev commented 6 years ago

Seems like if you pull comments as json you get the full amount. Rss is only returning 100, but I thought it was pulling the full amount previously. I'll investigate it this weekend when I get time.

boveus commented 6 years ago

So do we just need to change the request to from https://www.reddit.com/user/beeyayzah/comments.rss?limit=1000 to https://www.reddit.com/user/beeyayzah/comments.json?limit=1000?

I suppose we could look into the reddit api, though.