Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
gem install google_oauth
Before you begin you will need a client_id
and client_secret
for your application from Google. You can create one
from the Google API Console - ensure you click on API Access and create an OAuth2 client ID.
With your Client ID credentials you can now initialize the client:
client = GoogleOAuth::Client.new(
:client_id => 'YOUR_CLIENT_ID',
:client_secret => 'YOUR_CLIENT_SECRET',
:redirect => 'YOUR_REDIRECT_URI',
)
redirect_to client.authorization_url
At this point the client is redirected to the Google login page. If they authorize your application then Google will return to your
redirect URL with a code
parameter.
token = client.authorize(:code => params[:code])
You now have a valid token that you can store for future requests. You can initialize the client with this token if you already have it:
client = GoogleOAuth::Client.new(
:client_id => 'YOUR_CLIENT_ID',
:client_secret => 'YOUR_CLIENT_SECRET',
:token => 'USER_TOKEN'
)
The Google Calendar API supports the jsonc format. Check out the Google Documentation to see what properties are available.
Here is an example that gets the users first calendar and loops over all the events:
calendar = client.own_calendars.items.first
client.events(calendar.eventFeedLink).items.each do |event|
puts event.title
end
FAQs
Unknown package
We found that google_oauth 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
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.