Emelia Smith

Results 800 comments of Emelia Smith

That would fix the issue, you could also use the registration process for app URLs, which enables the same redirection but with more explicit security, here's Apple's documentation on that:...

@nbulaj this works for me to get clean running tests; the only output besides success is: ``` DEPRECATION WARNING: Setting action_dispatch.show_exceptions to false is deprecated. Set to :none instead. (called...

Changing as follows: https://github.com/doorkeeper-gem/doorkeeper/blob/625dcd981e294564a0ac4ac0b5b9b02ff051fa3e/spec/dummy/config/environments/test.rb#L26 ```diff # Raise exceptions instead of rendering exception templates - config.action_dispatch.show_exceptions = false + config.action_dispatch.show_exceptions = :none ``` Fixes that one issue.

One downside of this is that for every change you make, you need to rebuild the container image, which means reinstalling all the gems, even if they've not changed.

I think the test change and the errors are because you're not doing `bundle exec rake` but I might be wrong here.

@ransombriggs if it helps, this is my local gemfile.lock? Gemfile.lock ``` PATH remote: . specs: doorkeeper (5.7.1) railties (>= 5) GEM remote: https://rubygems.org/ specs: actioncable (7.1.3.4) actionpack (= 7.1.3.4) activesupport...

Not exactly, this method provides the same or similar security to Dynamic Client Registration β€” the spec however, probably should allow for only pre-registered clients via a side-channel (e.g., going...

I'll let @aaronpk or someone decide if they want to keep this or close this β€” I'm not personally invested, and have unsubscribed from this issue.

Okay, cool! Thanks for the help! I don't know SAML in the slightest (nor have a system wherein I can test this) I'll keep this in mind for next time...