Displaying 1 result from an estimated 1 matches for "login_with_oauth".
2010 Feb 07
0
Authlogic Oauth problem with Remember Me
...tration, instead of having a "login
with Twitter" button on my page.
That works so far, using a new view like this:
<html>
<body>
<% form_tag(user_session_path, :method => :post, :id =>
''new_user_session'') do %>
<%= hidden_field_tag ''login_with_oauth'', ''Login with Twitter'' %>
<% end %>
<script type="text/javascript">
var e = document.getElementById("new_user_session");
e.submit();
</script>
</body>
</html>
I''m trying to get Remember Me to work now, without...