gabmarfer / SimpleOAuth2

A Simple OAuth2 Helper

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

SimpleOAuth2 Build Status Cocoapod Version Cocoapod Platform License

A simple OAuth2 helper

Adding SimpleOAuth2 to your project

Cocoapods

CocoaPods is the recommended way to add SimpleOAuth2 to your project.

  1. Add SimpleOAuth2 to your Podfile pod 'SimpleOAuth2'.
  2. Install the pod(s) by running pod install.
  3. Add SimpleOAuth2 to your files with #import <SimpleOAuth2/SimpleOAuth2.h>.

Clone from Github

  1. Clone repository from github and copy files directly, or add it as a git submodule.
  2. Add all files from 'Source' directory to your project (As well as the dependencies listed in the Podfile).

Tools

  • Use SimpleOAuth2AuthenticationManager to authenticate an OAuth2 client.
  • The NSURLRequest+SimpleOAuth2 catgeory provides a helper method to obtain a authorization code from an NSURLRequest from an API. It also has a method to build a web login request with an optional permissionScope. If no permission scope is needed, pass in nil.

Testing

To use the included Rakefile to run expecta tests, run the setup.sh script to bundle required gems and cocoapods:

$ ./setup.sh

Then run rake to run the tests on the command line:

$ bundle exec rake

Additional rake tasks can be seen using rake -T:

$ rake -T
rake build  # Build SimpleOAuth2
rake clean  # Clean
rake test   # Run Tests

Version History

Version history can be found at the SimpleOAuth2 wiki.

Suggestions, requests, and feedback

Thanks for checking out SimpleOAuth2 for your OAuth2 needs. Any feedback can be can be sent to: rbaumbach.github@gmail.com.

About

A Simple OAuth2 Helper

License:MIT License


Languages

Language:Objective-C 90.0%Language:Ruby 9.7%Language:Shell 0.3%