GitXplorerGitXplorer
Z

testoauth2client

public
3 stars
1 forks
1 issues

Commits

List of commits on branch master.
Unverified
bd8ff95e494f673015c0ce490bdb951fa2dace37

Update to Rails 3.2.13

ZZenCocoon committed 12 years ago
Unverified
86ba545786f752dfd26ebfb783bfa822a06cccf8

Update rack

ZZenCocoon committed 12 years ago
Unverified
42c73ef2aa36a8beb0eceb4c2a518515b72a23aa

Update rails to version 3.2.11

ZZenCocoon committed 12 years ago
Unverified
0eb09826618e71552e1aea3e4740e402c8090d5b

Update to rails 3.2.8

ZZenCocoon committed 12 years ago
Unverified
478587f4e9d5ca9e43530e1dc71d495de193d643

Update rails and gems

ZZenCocoon committed 13 years ago
Unverified
632599b58770d5c768042d8d74c3e25679d6a552

Cleanup

ZZenCocoon committed 13 years ago

README

The README file for this repository.

OAuth 2 Client Test Application

A sample OAuth 2 Client application using Rails 3.2 and OmniAuth 1.0

Heavily based on http://railscasts.com/episodes/241-simple-omniauth

Apps & Gems sources

Live Applications

Testing in local

To test it in local, you will need to register the new client application on the provider application like follow

Devise::Oauth2Providable::Client.create(
  :name => 'Test App',
  :redirect_uri => 'http://0.0.0.0:3000/auth/testoauth2strategy/callback',
  :website => 'http://0.0.0.0:3000'
)

You will then need to use the generated identifier and secret in the client application's omniauth initializer.