I'm creating a web service to expose some data via publicly accessible APIs. At a high level, what mechanisms are people using to secure their APIs to ensure that a valid, authenticated user is making the call?

The service will be C#, the consumer could be anything (facebook or iPhone app as well as a website) so MS only solutions are out.

It's not a new problem so I assume there are some standard practices in place to deal with it but my google-fu is failing me on this one. Can the collective point me to any resources?

Thanks.

link|improve this question

I asked for options and got them, but Inquisitor gets the answer for pointing me at OAuth. – Marc Jan 24 '11 at 20:02
feedback

4 Answers

up vote 2 down vote accepted

I see that ferequently in SaaS web services is used authentication by token key over SSL - we choose this simply method in our last project over OAuth and SAML protocols. Maby this can be usefull - sometimes simple solutions make things more scalable and over controll.

link|improve this answer
That's interesting because "OAuth" was missing from my vocabulary and that opened up a world of google possibilities! – Marc Jan 23 '11 at 11:59
feedback

Try the answers in this similar question:

What is the best way to handle authentication in ASP.NET MVC with a Universe database?

link|improve this answer
The first link has no answers? – Phill Jan 23 '11 at 2:09
@phill - apologies you are right – Richard aka cyberkiwi Jan 23 '11 at 2:12
I don't even think he would need a custom provider, he can use built-in SQL provider if he's using MS SQL as backend. – Andrey Jan 23 '11 at 2:27
feedback

You can still use Membership authentication: have a web service method Login(username, password), inside that method validate user:

[WebMethod]
public bool Login( string username, string password)
{
    bool isValid = Membership.ValidateUser(username, password);
    if (isValid)
    {
        FormsAuthentication.SetAuthCookie(username, true);
        return true;
    }
    return false;
}

And that should do it - it will create a cookie that travels with requests and in each method you can check HttpContext.Current.User.IsAuthenticated.

void SomeWebMethodThatRequiresAuthentication(someparameter)
{
    if (HttpContect.Current.User.IsAuthenticated)
    {
        ... do whatever you need - user is logged in ...
    }
    else
    {
        .... optionally let user know he is not logged in ...
    }
}

I believe it can work with different consumers that support cookies because all it needs to work is for consumer to send the auth cookie along with the request to your web server.

link|improve this answer
That's interesting - so in that scenario there's no difference between an authenticated user of a website and a consumer of a web service. I guess it fails if the client doesn't support cookies though? (a desktop app for example) – Marc Jan 23 '11 at 11:44
ASP.NET membership also supports url rewriting and keeping authentication token in the url itself, so that will work for pretty much any consumer, even those which don't support cookies. For example: informit.com/articles/article.aspx?p=351414&seqNum=4 – Andrey Jan 24 '11 at 0:26
feedback

We use the WS-Security. It's a published standard so any client (in theory) can use it to send authentication credentials.

Here's another SO question that covers using WS-Security with C#.
How to use WS-Security in C#?

link|improve this answer
Thanks for the links - I see more reading ahead! – Marc Jan 23 '11 at 11:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.