-
Notifications
You must be signed in to change notification settings - Fork 106
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
72 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# | ||
# Copyright (c) 2010 Mike Mangino <[email protected]> | ||
# | ||
# 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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
The first version of a Facebook Open Graph Library for Ruby. Require HTTParty to function. | ||
|
||
For documentation on the Open Graph Library, see: http://developers.facebook.com/docs/api | ||
|
||
====================================== | ||
Quick Start: | ||
====================================== | ||
|
||
* create a token by following the instructions at http://developers.facebook.com/docs/authentication/desktop | ||
|
||
The important part is to make a request to https://graph.facebook.com/oauth/authorize?client_id=...&redirect_uri=http://www.facebook.com/connect/login_success.html&type=user_agent&display=popup | ||
|
||
(they have typos in the tutorial) | ||
|
||
grab the result and copy the access_token parameter. This will need to be URL decoded. | ||
|
||
With the decoded access_token, create a new Ogli client: | ||
|
||
in the ogli directory, run | ||
irb -Ilib | ||
|
||
require "rubygems" | ||
require "init" | ||
client = Ogli::Client.new("your_access_token") | ||
|
||
You can now fetch users with the client, for example: | ||
|
||
myself = client.user("me") | ||
|
||
or | ||
|
||
mikemangino = client.user("12451752") | ||
|
||
When you fetch yourself, you can look at your posts and other information: | ||
|
||
myself.posts | ||
|
||
Unfortunately, quite a bit of information is unavailable due to a facebook bug. If you want to see this fixed, please vote for: http://bugs.developers.facebook.com/show_bug.cgi?id=9864 | ||
|
||
|
||
======================================== | ||
Contributing | ||
======================================== | ||
|
||
1) fork the repo | ||
2) Add tests for a missing method, such as client.post(post_id) | ||
3) implement missing method | ||
4) send me a pull request. | ||
|
||
Feel free to add missing associations if you see them as well. My goal is to get a readonly API in place first, and then move on to the read/write API | ||
|
||
Mike | ||
|