redd icon indicating copy to clipboard operation
redd copied to clipboard

Redd is a batteries-included API wrapper for reddit.

Results 40 redd issues
Sort by recently updated
recently updated
newest added

Tests now pass locally, but it doesn't look like this PR triggered a travis build.

No PRs merged since Nov 2, 2017. Does not work with Ruby 3.0, though that would be fixed by this PR [here](https://github.com/avinashbot/redd/pull/101). Does anyone know of a reliable community supported...

If you're getting this error, it's possibly because of this line in the library (`Redd::APIClient`): ```ruby def connection super.auth("Bearer #{@access.access_token}") end ``` Basically it tries to access this field `access_token`...

Hi there, Do you think it's possible to get a new release with some updated dependencies? I had to downgrade to redd 0.7.10, but this version doesn't really work for...

This resolves a flawed assumption that all listings returned by the Reddit API output Model objects; many return generic objects, such as the **[/r/*subreddit*]/api/flairlist** endpoint. Fixes issue #93.

Needed to update gemspec file to ensure compatibility with newer gems

Hello, I am getting below error when I call Redd.it I tried 2 versions, both of which produced the same issue. Versions 0.8.8 0.7.10 ``` >> reddit = Redd.it( user_agent:...

Added two functions to the sessions model enabling the following two endpoints: - GET /subreddits/where - GET /subreddits/search

I have a web app and I have the following initializer ``` Reddit = Redd.it(user_agent: 'Reddit Client', client_id: ENV['reddit_client_id'], secret: ENV['reddit_secret_key']) ``` I then proceed to use `Reddit` throughout my...

I am running the following code: ``` session.subreddit("StevenUniverseTest").get_flair(session.user("EliteMasterEric")) ``` And getting this error: ``` unmarshaller.rb:31:in `unmarshal': cannot unmarshal: {:flair_css_class=>"", :user=>"EliteMasterEric", :flair_text=>":lapisuplifting: test"} (RuntimeError) ``` The issue is caused by the...