https://github.com/lodestone/knock-knock
HTTP requests at Google services using ClientLogin authentication in Ruby
https://github.com/lodestone/knock-knock
Last synced: 3 months ago
JSON representation
HTTP requests at Google services using ClientLogin authentication in Ruby
- Host: GitHub
- URL: https://github.com/lodestone/knock-knock
- Owner: lodestone
- Created: 2009-06-01T21:03:17.000Z (about 17 years ago)
- Default Branch: master
- Last Pushed: 2008-12-12T02:32:34.000Z (over 17 years ago)
- Last Synced: 2025-03-08T22:25:13.329Z (over 1 year ago)
- Language: Ruby
- Homepage: http://knock-knock.rubyforge.org/rdoc/
- Size: 114 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.rdoc
- Changelog: History.txt
Awesome Lists containing this project
README
= KnockKnock
KnockKnock was made to turn login with Google Authentication API easier.
== Features
* Singleton class for connection with Google.
* Simple authentication and clear code.
* GET, POST, PUT, DELETE method implemented
* Connection with any Google Account, even Hosted Google Accounts[http://google.com/a]
== Synopsis
require 'rubygems'
require 'knock_knock'
include Bubble::KnockKnock
Connection.connect('email@gmail.com', 'password', Services::GoogleContacts)
print Request.get('http://www.google.com/m8/feeds/contacts/email%40gmail.com/full')
== Services
All the API for any Google Service works with KnockKnock. You can check the Services[http://knock-knock.rubyforge.org/rdoc/classes/Bubble/KnockKnock/Services.html] module to see some examples.
== Install
sudo gem install knock-knock
== Contributors
* Jonathan Towell (http://moxiemachine.com/blog)
== License
(The MIT License)
Copyright (c) 2008 Bubble[http://bubble.com.br]
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
'Software'), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.