· 1 min read
Screencast: Authentifizierung mit Janrain Engage
Download:
Download(13.5 MB, 6:22) Alternativer Download für iPod & Apple TV(11.9 MB, 6:22)
Resourcen:
- Janrain Engage
- rpx_now
- authlogic_rpx
- devise_rpx_connectable
- Episode 209: Introducing Devise
- Full episode source code
Quellcode:
[bash] bundle install rails g migration add_rpx_to_users rpx_identifier:string rake db:migrate [/bash]
[ruby] # Gemfile gem ‘devise_rpx_connectable’
# user.rb devise …, :rpx_connectable
# config/initializers/devise.rb config.rpx_application_name = “railscasts” RPXNow.api_key = ”…” [/ruby]
[html] <%= link_to_rpx “Sign in”, user_session_url %> … <%= javascript_include_rpx(user_session_url) %>
<%= embed\_rpx user\_session\_url %> \[/html\]