Tagged Questions
an authentication plugin for Ruby on rails
38
votes
8answers
17k views
RESTful Authentication
What does RESTful Authentication mean and how does it work. I can't find a good overview on google. My only understanding is that you pass the session key (remeberal) in the URL, but this could be ...
26
votes
4answers
12k views
User/Pass Authentication using RESTful WCF & Windows Forms
What is the best approach to implementing authorisation/authentication for a Windows Forms app talking to an IIS-hosted RESTful WCF Service?
The reason I ask is I am very confused, after sifting ...
14
votes
2answers
350 views
Do sessions really violate RESTfulness?
Is using sessions in a RESTful API really violating RESTfulness? I have seen many opinions going either direction, but I'm not convinced that sessions are RESTless. From my point of view:
...
12
votes
4answers
7k views
Rails, Restful Authentication & RSpec - How to test new models that require authentication
I've created a learning application using Bort, which is a base app that includes Restful Authentication and RSpec. I've got it up and running and added a new object that requires users to be logged ...
10
votes
1answer
192 views
API Keys vs HTTP Authentication vs OAuth in a RESTful API
I'm working on building a RESTful API for one of the applications I maintain. We're currently looking to build various things into it that require more controlled access and security. While ...
10
votes
6answers
960 views
Is the Twitter API *really* RESTful?
Along with half of the web developer community, I've been struggling to really and truly grok the REST style. More specifically, I've been trying to form some opinions on how practical a pure RESTful ...
10
votes
1answer
2k views
RESTful-Authentication or Authlogic?
I'm having trouble deciding between the two. They both seem like great plugins but I'd like to know which is easier to control.
What are your guy's experiences with these plugins? Which would you ...
10
votes
3answers
1k views
Inadvertent Session Hijacking Issue With Restful Authentication
I'm using the current version of restful_authentication that is found on github and I'm having a bunch of strange session issues. The server seems to be somehow assigning sessions to users it ...
9
votes
3answers
168 views
Am I designing this WCF RESTful interface correctly?
I am creating a WCF webservice with WcF Authentication Service and the first set of functions I need is to manage an inbox for a client. The client will be determined by the authentication.
This is ...
9
votes
2answers
2k views
How to secure RESTful web services?
I have to implement secure RESTful web services. I already did some research using Google but I'm stuck.
Options:
TLS (HTTPS) +
HTTP Basic (pc1oad1etter)
HTTP Digest
two-legged OAuth
a ...
8
votes
1answer
1k views
WCF, RESTful Web Services and custom authentication
I am beginning to believe I am a grossly incompetent programmer. After a lot of reading, I still cannot figure out how to cleanly implement an authentication mechanism for a RESTful WCF Service.
I ...
8
votes
3answers
633 views
RESTful authentication - resulting poor performance on high load?
For a RESTful web service we say that that the server shouldn't store any state. Now for every request the 'user' must be authenticated and must have an authorization for the action(s) he/she wishes ...
8
votes
4answers
2k views
Restful web service authentication
I have a Restful web service API, that is being used by different 3rd parties. Part of that API is restricted (you need username/password to access it). I was wondering what would be the best way of ...
7
votes
2answers
2k views
RESTful authentication for web applications
Hi already wrote this observation and question on this question earlier, but only later noticed that it was an old and "dead" question. As I'd really like some insights from others, I'm reposting it ...
7
votes
4answers
2k views
What is the best way to extend restful_authentication/AuthLogic to support lazy logins by an anonymous iPhone?
I'm building an iPhone application that talks to a Ruby on Rails backend. The Ruby on Rails application will also service web users. The restful_authentication plugin is an excellent way to provide ...
6
votes
3answers
692 views
WCF 4.0 REST username password authentication
I have been struggling with username/password authentication/authorization in a WCF 4.0 RESTfull service using the ASP.Net membership/role providers.
Having spent two days trying to find something ...
6
votes
7answers
1k views
RESTful web service - how to authenticate requests from other services?
I am designing a RESTful web service that needs to be accessed by users, but also other web services and applications. All of the incoming requests need to be authenticated. All communication takes ...
6
votes
3answers
594 views
Is WIF a good option for securing WCF 4.0 Restful service with iPhone
I have a project which needs to expose WCF restful service to iphone/ipad Client.
The WCF worked, now i need to secure it with username and password.
For some reason i am a little reluctant to go ...
6
votes
2answers
1k views
Simple PHP REST server with secure user authentication and registered third party applications
I'm looking into writing an PHP REST API that would allow registered users interact with the web service from third party applications.
What I need the API to be able to do is:
provide support ...
6
votes
2answers
357 views
How do you prevent brute force attacks on RESTful data services
I'm about to implement an RESTful API to our website (based on WCF data services, but that probably does not matter).
All data offered via this API belongs to certain users of my server, so I need ...
5
votes
2answers
1k views
User Authentication using REST
I apologize if my questions seems to be repetitive but I couldn't find a answer for this yet.
I am building a REST based application using Spring 3.0 and plan to deploy to Google App Engine ...
5
votes
1answer
974 views
api authentication in rails 3
Currently I have an rails 3 application which uses devise plugin for website authentication. But now I'll be adding an iPhone app as well so I will be exposing the api calls to the client device ...
5
votes
2answers
2k views
How to design authentication and authorization system for REST backend / Ajax front End Application
I am starting a new project where we are planing to build a restful back end and an AJAX font end. I am approaching the problem by focusing on Identifying all the resources that I have and what the ...
5
votes
3answers
2k views
RESTful frameworks for Android, iOS…?
My company is reworking its API and wants to make everything RIGHT for this time ;) Thats the setup...
We are delivering data to clients over the internet.
Clients are mobile handsets like iPhone, ...
5
votes
1answer
518 views
Spring Security, OAuth and Pre-Authorization
Can anyone provide some information, hints or tutorials that demonstrate how to use Spring Security OAuth with Spring's PreAuthorize feature? Ideally, I would like to link a username used for ...
5
votes
3answers
248 views
App structure for roles-based RESTful resources
Is there a consensus best approach to implementing user roles when using RESTful resource routes?
Say I have the following resources:
User has_many Tickets
Event has_many Tickets
Ticket belongs_to ...
5
votes
2answers
2k views
Ruby on Rails functional testing with the RESTful Authentication plugin
I started writing functional tests for my rails app today. I use the RESTful authentication plugin. I ran into a couple confusing things I hope someone can clarify for me.
1) I wrote a quick login ...
5
votes
11answers
2k views
Simple way of turning off observers during rake task?
I'm using restful_authentication in my app. I'm creating a set of default users using a rake task, but every time I run the task an activation email is sent out because of the observer associated ...
5
votes
4answers
1k views
Licenses and sessions the RESTful way
This question crossed my mind after I read this post:
“Common REST Mistakes: Sessions are irrelevant”
If sessions are indeed discouraged in a RESTful application. How would you handle licenses in ...
5
votes
2answers
1k views
Does Rails have a built-in authentication system?
I have implemented authentication systems for webapps several times over the years, but before I do it once more, I thought I'd ask if there's a canned solution I should know about.
Last time I ...
4
votes
1answer
35 views
Recommended configuration for both web client and mobile REST api security
I realize there are a ton of questions on this subject, and I have been researching this for a couple days now. I want to make sure my question is as specific as possible since I have yet to gain a ...
4
votes
1answer
382 views
Adding Headers and Post data in RESTfull/HTTP Request in C#
I'm having problems with sending POST request in C# and it seems I misunderstood some HTTP basics. So basically I'm implementing RESTfull service client, which work as follows:
Make POST request ...
4
votes
1answer
46 views
How to trigger http 1.1 4xx 5xx error code? c#
How do have your application response with a http 1.1 4xx 5xx error in c#?
4
votes
1answer
741 views
Rails and iOS app, authentication question
I want to build web service in Rails 3 and iOS app to work with this service.
I need simple thing. User when first time open iOS app, get login screen. When is logged in, iOS app can send and get ...
4
votes
2answers
142 views
what is rest,and what is its advantage [closed]
I have googled about the docs of rest, but I am not exactly sure I understand it.
What I can see in rest is that its URL is clean, for example:
http://host/webservice.asmx?name=xname&type=xtype
...
4
votes
3answers
1k views
WCF .net 4.0 HTTP Basic Authentication
I have been searhcing for this for a couple of days now.
I am just trying to have a Username / Password being passed into my RESTful service using Basic HTTP Authentications. Everything else works ...
4
votes
1answer
390 views
In Restful web services how to get username or password programmatically (basic authentication)
I have restful web services in a jee application (ejb3) running on jboss. And do not know how to get username or password programmatically, like when service method is called I want to be able to get ...
4
votes
1answer
252 views
wcf webhttp authentication
I am working with WCF Webhttp services. I have created a bunch of services and all that remains is to put in user authentication...
Questions
Keeping with the rest architecture style, should I ...
4
votes
2answers
757 views
Rails Web service with authentication??? User logged in ??
Any idea how I would go about have a rails REST web service where a user can only get, put, post, delete only their own data ? I am using Devise as my user authentication gem, but I am not sure if ...
4
votes
1answer
730 views
Implementing OAuth Provider in Delphi
I've developed a REST web service and I want to implement an OAuth Service Provider for authenticating, primarily, two-legged OAuth requests. Could anyone please point me to an implementation of an ...
4
votes
2answers
1k views
Restful Authentication: Allow logins from multiple computers?
Our Rails app is using Restful Authentication for user/session management and it seems that logging in to the same account from multiple computers kills the session on the other computers, thus ...
4
votes
2answers
529 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 secure by requiring ...
4
votes
1answer
686 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 it makes sense, but ...
4
votes
9answers
4k views
losing session in rails 2.3.2 app using subdomain
i have a 2.2.3 app which i upgraded to 2.3.2
it's a multi-site (using subdomain) that creates one top level session for all sites.
this is how i change the domain in production.rb:
...
3
votes
1answer
86 views
Exposing Rails/Devise Authentication to iOS application
I have a rails 3.1 application that uses Devise for Authentication with a simple User model with email,password etc. I need to be able to authenticate from an iphone application. How do I expose this ...
3
votes
2answers
98 views
Java WebService Type Basic Difference
I am new to Java.....I know that there are two types of web service....1. SOAP Webservice and 2. RESTful Webservice.
can any one please tell me what is the basic difference between both of them...and ...
3
votes
2answers
114 views
RESTful application security
I have written a C++ application framework which communicates with a server app, using a RESTful API. The data passed between the client and server is currently using a (32bit long) simple password ...
3
votes
4answers
152 views
Why is form based authentication NOT considered RESTful?
Although I "think" I understand it I need some clarity. With PURE Restful authentication, things do get a bit unwieldy and using forms helps a lot with the UI of the application (i.e., get to have ...
3
votes
1answer
133 views
Custom Authentication OpenRasta
Hi I´m building an application that has a token based authentication ex:
http://www.host.com/resource?token=589437534
I was going write an interceptor or something like that, but I imagine that ...
3
votes
2answers
77 views
What is the best way to track an anonymous user with the restful_authentication plugin in Rails?
I have seen general posts on how to track anonymous users in a voting app such as with a cookie. But specifically how do I modify restful_authentication to track anonymous users with IP + user-agent ...