Relative Content

Tag Archive for rest

Custom use of Authorization header in a REST API

I’m building a REST api where clients are authenticated using client certificates. A client in this case is not an individual user, but some sort of a presentation layer. Users are authenticated using a custom approach and it’s the responsibility of the presentation layer to see that this is properly done (note: I know this is not the proper approach, but the api is not public).

Is this solution RESTful and secure?

Our product registers new players on our service, and we’ve chosen to host it on Azure (we’re using .NET) and we wanted it to be stateless (for scalability) and relatively secure.