
Security News
Safari 18.4 Ships 3 New JavaScript Features from the TC39 Pipeline
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.
faraday_middleware-oauth2_refresh
Advanced tools
Faraday middleware to manage OAuth token authorization with token refresh.
This gem is a piece of Faraday middleware that adds OAuth token handling using the oauth2 gem.
Add this line to your application's Gemfile:
gem 'faraday_middleware-oauth2_refresh'
And then execute:
$ bundle
Or install it yourself as:
$ gem install faraday_middleware-oauth2_refresh
require 'oauth2'
require 'faraday_middleware/oauth2_refresh'
client = OAuth2::Client.new('my_client_id', 'my_client_secret', site: 'https://example.com' )
token = client.password.get_token('username', 'password', { headers: { 'Authorization' => 'Basic my_api_key' } })
conn = Faraday.new(url: "http://example.com") do |builder|
builder.request :oauth2_refresh, token
builder.adapter Faraday.default_adapter
end
conn.get "/foo" # sends token
See CHANGELOG.md
Project Repo
Any reports of problems, comments or suggestions are most welcome.
Please report these on Github
FaradayMiddleware::OAuth2Refresh is available under an MIT-style license. See {file:LICENSE.md} for details.
FaradayMiddleware::OAuth2Refresh © 2015-2021 by John Wang
FAQs
Unknown package
We found that faraday_middleware-oauth2_refresh demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.
Research
Security News
The Socket Research Team investigates a malicious Python package that enables automated credit card fraud on WooCommerce stores by abusing real checkout and payment flows.
Security News
Python has adopted a standardized lock file format to improve reproducibility, security, and tool interoperability across the packaging ecosystem.