Tagged Questions
53
votes
5answers
26k views
Security of REST authentication schemes
Background:
I'm designing the authentication scheme for a REST web service. This doesn't "really" need to be secure (it's more of a personal project) but I want to make it as secure as possible as an ...
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 ...
29
votes
3answers
12k views
REST and authentication variants
I am currently working on a REST library for .net, and I would like to hear some opinions about an open point I have: REST and authentication.
Here is an example of an RESTful interface used with ...
12
votes
3answers
966 views
Securing an API: SSL & HTTP Basic Authentication vs Signature
When designing an API for our web app, we'll use the their subdomain as the 'username' and generate an API key/shared secret. Firstly, is it ok to use the subdomain as the username? I don't see the ...
10
votes
4answers
4k views
Rest-ful Basic Authentication with ASP.NET MVC
Anyone know how this works, I'm using the .net membership provider and just want to pull an xml list. I'm also using the .net mvc sdk. So here's the problem when I add the [WebApiEnabled] at the top ...
9
votes
4answers
1k views
Creating an API for mobile applications - Authentication and Authorization
Overview
I'm looking to create a (REST) API for my application. The initial/primary purpose will be for consumption by mobile apps (iPhone, Android, Symbian, etc). I've been looking into different ...
9
votes
4answers
1k views
Authorizing REST Requests
I'm working on a REST service that has a few requirements:
It has to be secure.
Users should not be able to forge requests.
My current proposed solution is to have a custom Authorization header ...
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
5answers
486 views
Best Learning Resource for OAuth
I have to use OAuth for my Android client and I have found that the learning resources are pretty rare or inadequate for this technology.
Does anybody know a good book/tutorial/online resource to ...
7
votes
2answers
3k views
Self-hosted WCF REST service and Basic authentication
I've created a self-hosted WCF REST service (with some extra's from WCF REST Starter Kit Preview 2). This is all working fine.
I'm now trying to add Basic authentication to the service. But I'm ...
6
votes
3answers
177 views
What is a good combination of tools currently for implementing REST/J2EE/Database + custom auth
Was just wondering at the current point in time, what is a good combination of tools/frameworks/libraries for implementing a REST API on top of J2EE that integrates to a backend RDB and using OpenID ...
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
382 views
Place API key in Headers or URL
I'm designing a public API to my company's data. We want application developers to sign up for an API key, so we can monitor use and overuse.
Since the API is REST, my initial thought is to put this ...
6
votes
1answer
2k views
jQuery HTTP authentication
With jQuery I am calling Version One Rest API and need to authenticate user in HTTP header.
I tried
$.ajax({
dataType: "jsonp",
beforeSend: function(xhr){
...
6
votes
2answers
359 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
Calling WCF/JSON/REST WebService from JavaScript using jQuery/Ajax
I know there are a lot of questions out there about this - believe me I've read a lot of them and tried the answers out.
(This project is for an internal company lan, not the internet)
We have a ...
5
votes
1answer
1k views
Rest-client log in with authlogic
I am trying to use the Rest-client gem to do a few small tasks for my app which uses Authlogic to authenticate users. From Rest-Client's API, I see that one can post data necessary for the log-in ...
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 ...
4
votes
4answers
116 views
Password protecting a REST service?
After creating a basic REST service, I've have come to the point where it would be appropriate to add some sort of password protection, as I need to verify that my users are both properly logged and ...
4
votes
1answer
229 views
OpenId via Curl
How can I do OpenId based authentication using Curl?
At first place can I do it?
Regards,
Allahbaksh
4
votes
4answers
521 views
OpenId authentification in ASP.NET MVC as a restful service?
Can I offer the authentication, authorization, etc created using "ASP.NET MVC Open Id website" extension.. as a REST service in ASP.NET MVC? How can I create this service(maybe using WCF)?
(Please if ...
4
votes
2answers
388 views
how can I authenticate a user from a web app to an API?
It seems to be a widely asked questions and after having read tons of documentations on the subject, I'm still not sure to have understood everything correctly (I assume that being dumb is a possible ...
4
votes
4answers
149 views
RESTful principles question
An intelligent coworker friend of mine brought up a question to me that I was uncertain how to answer and I'd like to pose it to the world.
If a RESTful endpoint uses token-based authentication, aka ...
4
votes
2answers
4k views
REST Authentication in PHP (CodeIgniter)
I writing REST API form my web application. Application is written using CodeIgniter framework. Application itself is working fine, but I'm stuck on making REST Authentication. I think that basic Http ...
4
votes
7answers
345 views
What's the preferred method for authenticating users of a webpage in a RESTful way?
I'm developing a new experimental web-application framework, and I decided to give RESTful some attention. I've read up on the basics, and feel like I have a pretty good understanding of RESTful as a ...
4
votes
5answers
2k views
Service-Based Authentication Using Tokens
I'm having a tough time trying to find clear and concise examples of how one would implement a service-based authentication scheme using tokens. As far as I can tell, the basic steps are as follows:
...
3
votes
3answers
89 views
How to protect the 'public' part of a REST service from spam?
I have a REST service that's reasonably complete and will be used with an iOS app. It's built using Ruby/Sinatra but I don't think that really matters here.
I'm using HTTP Basic Authentication over ...
3
votes
2answers
118 views
Simple REST Authentication Strategy?
I am designing a web service which can be used by multiple clients, web, mobile, 3rd party, etc. I am looking at REST as a possible solution and I am considering the case of authentication.
I am ...
3
votes
1answer
471 views
REST authentification / authorization
I need some advices on how to secure my application :
I have a REST service, using Spring MVC 3
I have my client application, using Ext GWT 2.2
Users credentials are available on the server side ...
3
votes
2answers
151 views
WCF Authentication Strategies
I have been challenged with the task of coming up with an authentication/authorization strategy for a pretty big WCF API. My task is to implement security on this API from clients who might be a ...
3
votes
1answer
741 views
WCF REST RequestInterceptor authentication
I am trying to do some basic authentication in a WCF RequestInterceptor. I am using this article as a start.
The problem I am running into is communicating between the interceptor and the service. ...
3
votes
1answer
388 views
Caching proxy with authenticated REST requests
Consider following scenario:
I have RESTful URL /articles that returns list of articles
user provide his credentials using Authorization HTTP header on each request
articles may vary from user to ...
2
votes
1answer
125 views
Delphi XE2 DataSnap - Access REST connection properties in server methods module
I'm building an XE2 DataSnap server which will serve connections from REST clients. My DSServerClass LifeCycle property is set to 'Invocation'. The REST connection properties will include username and ...
2
votes
2answers
124 views
Questions About Consuming Your Own API with OAuth
I'm building a RESTful API for a project I'm working on and I'd like to make the main application consume the API because:
It will result in having one set of code to maintain
Should we decide to ...
2
votes
3answers
109 views
How to make this REST get method in Java?
I have the following REST get Request that works successfully:
The result is a XML document that I then want to parse. I tried the same in Java:
I use the following code:
public void ...
2
votes
1answer
344 views
Programmatically login to Facebook using username/password
Ok, I've been looking for over an hour on this subject and can only find OAuth solutions, which I do not need or want.
I need to authenticate as myself to Facebook from a location other than ...
2
votes
2answers
254 views
Authentication and REST
I have implemented a win service. I 'd like to extend it to have some features enabled via REST. I have implemented it using WCF rest features and it works as I want. So far so good.
My problem is ...
2
votes
2answers
122 views
How to configure grails/spring authentication scheme per url?
How can I configure a grails application using Spring security such that one set of url's will redirect unauthenticated users to a custom login form with an http response code of 200, whereas another ...
2
votes
2answers
89 views
What are the pros and cons of Basic HTTP authenication
I have created a REST API that uses Basic HTTP authentication. Is is restricted to SSL only. Now that it is implemented I am hearing criticisms that Basic HTTP over SSL is not secure. It would be ...
2
votes
1answer
452 views
Authentication in Apache Jersey without using Http-Authentication?
I am building a RESTful Webservice using Apache Jersey. Now I want that you need an authentication for some requests to it. Using the typical REST-approach the Authentication should be done via ...
2
votes
1answer
362 views
Authentication in Play! and RestEasy
I have a small application written in Play! which allows user registration and adding some content for registered users which other registered users can view. I'd like to add some REST API to my ...
2
votes
2answers
201 views
Restful Java - Grant access to resources
I developing a resful webservice that will have differentes resources (the application database stores urename and password).
On the other and I have a client that can access to those resources. To ...
2
votes
2answers
268 views
OAuth is not secure or I didn't understand it?
I was thinking about security for my REST web Service API, and decided to take a look at others large services and how they do it. As an example I decided to study Twitter's OAuth. After reading ...
2
votes
2answers
763 views
method specific authentication in Phil Sturgeons php codeigniter rest api
Hi
I know that I can set the rest authentication in Phil Sturgeons rest API, but I only want authentication for some methods in the REST API.
I want some of my methods to be accessible for everyone ...
2
votes
1answer
222 views
how do i do authentification on android
I need to authenticate to use a rest web service.
I make a
HttpClient httpclient = new DefaultHttpClient();
an there must be a way to use UsernamePasswordCredentials on that client.
Can somebody ...
2
votes
1answer
310 views
authentication in wcf Rest
I have one solution and it is made of two kind of project one is asp.net and it's using .net membership for authenticate the users
another project is WCF REST (Odata) , how I can authenticate the user ...
2
votes
2answers
485 views
Implementing Security in REST?
I am concerned on how to implement security measures may it be Authentication or Authorization..
How can these be implemented.. if you have any thoughts or links that you can share with regards to WCF ...
2
votes
2answers
514 views
How do I add basic authentication to a Python REST request?
I have the following simple Python code that makes a simple post request to a REST service -
params= { "param1" : param1,
"param2" : param2,
"param3" : param3 }
xmlResults = ...
2
votes
1answer
875 views
How do I do set the Authorization header of a GoogleLogin request using the new WCF REST HttpClient API
I'm using the new HttpClient class, part of the WCF REST Starter Kit, to authenticate to Google's Map Data service. I've got my ClientLogin authentication token, but I'm not sure how to take this ...
2
votes
1answer
580 views
Does mcrypt support asymmetric encryption?
I want to use asymmetric encryption of headers in RESTful requests to verify the identity of the system sending the request: i e System A encrypts it's name, timestamp, and the service name using it's ...