Repository is archived
No commit activity in last 3 years
No release in over 3 years
A RubyMotion wrapper for the OAuth 2.0 protocol built with a similar style to the original OAuth spec.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies
 Project Readme

MotionAuth-OAuth2

Build Status Code Climate

A RubyMotion fork of the existing OAuth2 RubyGem that works for iOS and OS X.

WARNING

This is an experiment. You're more than welcome to use it in an app if everything works for you, but updates will not be a priority. I just decided to share the code with the world because why not!? :)

Installation

Add this line to your application's Gemfile:

gem "motionauth-oauth2"

And then execute:

$ bundle

Or install it yourself as:

$ gem install motionauth-oauth2

Usage Examples

client = OAuth2::Client.new("client_id", "client_secret", site: "https://example.org")

client.auth_code.authorize_url(redirect_uri: "http://localhost:8080/oauth2/callback")
# => "https://example.org/oauth/authorization?response_type=code&client_id=client_id&redirect_uri=http://localhost:8080/oauth2/callback"

token = client.auth_code.get_token(
  "authorization_code_value",
  redirect_uri: "http://localhost:8080/oauth2/callback",
  headers:      { "Authorization" => "Basic some_password" }
)
response = token.get("/api/resource", params: { "query_foo" => "bar" })
response.class.name
# => OAuth2::Response

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am "Add some feature")
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request