0
votes
0answers
3 views
Using OpenID (RPX) (and maybe OAuth) for a RESTful web service
How would you combine OpenID with a RESTful web service?
The personal project I'm working on is using the RPX SaaS to do OpenID. The key result of this is URL describing the logge …
0
votes
1answer
84 views
OAuth Consumer request for token from ServiceProvider returns InternalServerError
I'm playing around with DevDefined.OAuth - an OAuth consumer and provider implementation for .Net http://code.google.com/p/devdefined-tools/wiki/OAuth and on launching the ExampleC …
2
votes
4answers
340 views
RESTful Authentication: Stumped trying to do simple redirect on cookie based authentication
I have a RoR application that's using the RESTful Authentication plug-in. Everything works great. I recently enabled cookie based authentication and that works fine too. The prob …
-1
votes
1answer
60 views
ruby on rails: Store data for current_user on different models
I am trying to store data from the current_user in a User model with attr_accessor :offset. I would like to fetch records of a different model using the offset stored in the curren …
0
votes
4answers
132 views
Rails plugin Restful_Authentication does not work.
I have tried to make it work around 6 times using different tutorials, and I arrive to the same result. I install the plugin correctly, generate the files correctly, add the routes …
1
vote
1answer
324 views
Rails w/ ActiveRecord Sessions and Restful-authentication: when does the sessions table get written to?
Warning: some of this may be very wrong-headed, so please let me know if my assumptions are incorrect.
Here's what I'm trying to accomplish:
I'm using restful-authentication for …
2
votes
2answers
53 views
RuntimeError: Declare either attr_protected or attr_accessible for User, but not both
Since a short time my rails applications yields the following runtime error in the test suite:
RuntimeError: Declare either attr_protected or attr_accessible for User, but not bot …
0
votes
3answers
57 views
Help with rails restful authentication
I just installed the restful authentication using this plugin and when I go to localhost:3000/login
i get this error
NameError in SessionController#new
uninitialized const …
1
vote
3answers
218 views
rails - InvalidAuthenticityToken for json/xml requests
For some reason I'm getting an InvalidAuthenticityToken when making post requests to my application when using json or xml. My understanding is that rails should require an authent …
2
votes
2answers
54 views
Solutions to web service client certificates/auth best practices
I have a simple web service that has an API third party developers are allowed to access. The API mostly follows REST principles.
I'm interested in solutions to make the API more …
0
votes
1answer
118 views
Trouble using ssl_requirement with restful_authentication in Ruby/Rails.
I'm trying to use the ssl requirement plugin with the restful authentication plugin and I have a question that I'm having trouble finding the answer to.
When allowing a user to lo …
1
vote
1answer
24 views
Verifying Resftul Authentication through a Non Ruby App
I'm trying to do Authentication against restful_authentication from a php application, however I understand it uses a SHA1(digest--salt--password--RESTFUL_AUTH_KEY). The issue is r …
0
votes
0answers
71 views
Problem with role requirement and restful authentication
Our site uses role requirement and restful authentication plugins for rails. We are seeing most users able to access the site (login) just fine but a handful of logins are failing …
2
votes
2answers
56 views
Can restful authentication work with Cookies Disabled?
If a user has cookies disabled in their browser can restful authentication and role requirement still work?
On our site, with cookies disabled, the system won't let you log in. A …
1
vote
1answer
66 views
Form based login while also applying REST principles
I am a Spring/JavaEE web programmer and am starting to investigate the principles of REST for future web applications, but I can't figure out how to do usable logins. For a Web API …
