patreon-ruby icon indicating copy to clipboard operation
patreon-ruby copied to clipboard

Interact with the Patreon API via OAuth

Results 9 patreon-ruby issues
Sort by recently updated
recently updated
newest added

Bumps [sinatra](https://github.com/sinatra/sinatra) from 1.4.8 to 3.0.4. Changelog Sourced from sinatra's changelog. 3.0.4 / 2022-11-25 Fix: Escape filename in the Content-Disposition header. #1841 by Kunpei Sakai 3.0.3 / 2022-11-11 Fix: fixed...

dependencies

Bumps [addressable](https://github.com/sporkmonger/addressable) from 2.5.2 to 2.8.1. Changelog Sourced from addressable's changelog. Addressable 2.8.1 refactor Addressable::URI.normalize_path to address linter offenses (#430) remove redundant colon in Addressable::URI::CharacterClasses::AUTHORITY regex (#438) update gemspec to...

dependencies

Bumps [rack](https://github.com/rack/rack) from 1.6.10 to 1.6.13. Commits 47a1fd7 bump version b8dc520 Handle case where session id key is requested but it is missing 698a060 Merge pull request #1462 from jeremyevans/sessionid-to_s...

dependencies

Initializing it with a string causes `path` to be incorrect: ```ruby url = URI.parse('https://www.patreon.com/api/oauth2/token') req = Net::HTTP::Post.new(url.to_s) req.path # => "https://www.patreon.com/api/oauth2/token" ``` As opposed to ```ruby url = URI.parse('https://www.patreon.com/api/oauth2/token') req...

Update Ruby lib to APIv2. The generation code lives in https://github.com/Patreon/patreon_py/pull/18680 ### Note to reviewer It should be easier to look at each commit individually. Inspiration: https://github.com/Patreon/patreon-python/pull/28

Bumps [haml](https://github.com/haml/haml) from 4.0.7 to 5.1.2. Changelog *Sourced from [haml's changelog](https://github.com/haml/haml/blob/master/CHANGELOG.md).* > ## 5.1.2 > > Released on August 6, 2019 > ([diff](https://github.com/haml/haml/compare/v5.1.1...v5.1.2)). > > * Fix crash in some...

dependencies

After upgrading the Patreon gem to `v0.3.0`, performing the OAuth flow using the following code snippet throws an exception on the last line during the callback to my service. Downgrading...

Hi, I am trying to fetch patrons but I am getting errors: ``` api_client = Patreon::API.new(ENV.fetch('PATREON_ACCESS_TOKEN')) => # irb(main):002:0> campaign_response = api_client.fetch_campaign opening connection to www.patreon.com:443... opened starting SSL for...

Is there any example how to implement this gem with devise?