• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

northworld/google_calendar: A minimal wrapper around the Google Calendar API

原作者: [db:作者] 来自: 网络 收藏 邀请

开源软件名称(OpenSource Name):

northworld/google_calendar

开源软件地址(OpenSource Url):

https://github.com/northworld/google_calendar

开源编程语言(OpenSource Language):

Ruby 100.0%

开源软件介绍(OpenSource Introduction):

Google Calendar

A fast lightweight and minimalist wrapper around the Google Calendar api.

Gem Version Build Status

Install

[sudo] gem install 'google_calendar'

Setup

Obtain a Client ID and Secret

  1. Go to the Google Developers Console.

  2. Select a project, or create a new one (at the top of the page).

  3. In the sidebar on the left, select Library.

  4. Type in 'Google Calendar' in the search box and click on 'Google Calendar API' in the results.

  5. Click on the 'Enable' link at the top of the page.

  6. In the sidebar on the left, select Credentials.

  7. If you haven't done so already, create your 'OAuth client ID' by clicking Create Credentials'. Note: you need to set your 'Product name show to users' on the OAuth consent screen before you can create your client ID.

  8. Select the 'Other' option and click create.

Take note of the Client ID and Client Secret as you'll need to add it to your code later.

Find your calendar ID

  1. Visit Google Calendar in your web browser.

  2. In the calendar list on the left, click the down-arrow button next to the appropriate calendar, then select Calendar settings.

  3. In the Calendar Address section, locate the Calendar ID listed next to the XML, ICAL and HTML buttons.

  4. Copy the Calendar ID.

Usage

require 'rubygems'
require 'google_calendar'

# Create an instance of the calendar.
cal = Google::Calendar.new(:client_id     => YOUR_CLIENT_ID,
                           :client_secret => YOUR_SECRET,
                           :calendar      => YOUR_CALENDAR_ID,
                           :redirect_url  => "urn:ietf:wg:oauth:2.0:oob" # this is what Google uses for 'applications'
                           )

puts "Do you already have a refresh token? (y/n)"
has_token = $stdin.gets.chomp

if has_token.downcase != 'y'

  # A user needs to approve access in order to work with their calendars.
  puts "Visit the following web page in your browser and approve access."
  puts cal.authorize_url
  puts "\nCopy the code that Google returned and paste it here:"

  # Pass the ONE TIME USE access code here to login and get a refresh token that you can use for access from now on.
  refresh_token = cal.login_with_auth_code( $stdin.gets.chomp )

  puts "\nMake sure you SAVE YOUR REFRESH TOKEN so you don't have to prompt the user to approve access again."
  puts "your refresh token is:\n\t#{refresh_token}\n"
  puts "Press return to continue"
  $stdin.gets.chomp

else

  puts "Enter your refresh token"
  refresh_token = $stdin.gets.chomp
  cal.login_with_refresh_token(refresh_token)

  # Note: You can also pass your refresh_token to the constructor and it will login at that time.

end

event = cal.create_event do |e|
  e.title = 'A Cool Event'
  e.start_time = Time.now
  e.end_time = Time.now + (60 * 60) # seconds * min
end

puts event

event = cal.find_or_create_event_by_id(event.id) do |e|
  e.title = 'An Updated Cool Event'
  e.end_time = Time.now + (60 * 60 * 2) # seconds * min * hours
end

puts event

# All events
puts cal.events

# Query events
puts cal.find_events('your search string')

This sample code is located in readme_code.rb in the root folder.

Ruby Support

The current google_calendar gem supports Ruby 2.1 and higher – because of the json gem dependency. We maintain support for Ruby 1.8.7, 1.9.3 and 2.0 on different branches.

Notes

  • This is not a complete implementation of the calendar api, it just includes the features we needed to support our internal calendar integration. Feel free to add additional features and we will happily integrate them.

  • Did you get an SSL exception? If so take a look at this: gist.github.com/fnichol/867550

Contributing to google_calendar

  • Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet

  • Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it

  • Fork the project

  • Start a feature/bugfix branch

  • Commit and push until you are happy with your contribution

  • Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.

  • Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.

Running Tests

The first time you run rake test Rake will copy over .env.test to .env for use by Dotenv. You can also use .env.default as your own starting point, just remember to copy it over to .env before running tests.

You can modify .env with your own credentials and don't worry about accidentally committing to the repo as .env is in the .gitignore.

Copyright © 2010-2014 Steve Zich. See LICENSE.txt for further details.




鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap