Difference between revisions of "CLARIN/OAuth2 use case"

From PDP/Grid Wiki
Jump to navigationJump to search
(→‎Authorization server: rename section)
Line 7: Line 7:
 
There are many OAuth2 clients for various programming languages. Documentation of the settings needed is most important. It would be useful to have a number of examples to use with the most important programming languages (at least Java and PHP). Finally, a way to configure a client with Apache configuration without touching its code, would be a bonus, supplying user and token information in environment variables.
 
There are many OAuth2 clients for various programming languages. Documentation of the settings needed is most important. It would be useful to have a number of examples to use with the most important programming languages (at least Java and PHP). Finally, a way to configure a client with Apache configuration without touching its code, would be a bonus, supplying user and token information in environment variables.
  
== Authentication server ==
+
== Authorization server ==
The OAuth2 AS (authentication server) is the most complex component of the three, which handles user authentication, consent, possibly some authorization and token management. There is not that much choice between existing OAuth2 server implementations currently, and their maturity varies.
+
The OAuth2 AS (authorization server) is the most complex component of the three, which handles user authentication, consent, possibly some authorization and token management. There is not that much choice between existing OAuth2 server implementations currently, and their maturity varies.
  
 
== Resource server ==
 
== Resource server ==

Revision as of 13:14, 13 September 2012

<sidebar>

</sidebar> While in the end n-tier delegation is needed withing CLARIN, for the current use-case it is enough to do without real delegation. Plain OAuth2 is sufficient, just to get some experience with it. Delegation can be added later by using a delegation endpoint, or using certificate delegation.

So the goal now is to create a straightforward OAuth2 setup with client, authentication server, and resource server.

Client

There are many OAuth2 clients for various programming languages. Documentation of the settings needed is most important. It would be useful to have a number of examples to use with the most important programming languages (at least Java and PHP). Finally, a way to configure a client with Apache configuration without touching its code, would be a bonus, supplying user and token information in environment variables.

Authorization server

The OAuth2 AS (authorization server) is the most complex component of the three, which handles user authentication, consent, possibly some authorization and token management. There is not that much choice between existing OAuth2 server implementations currently, and their maturity varies.

Resource server

The resource server needs to verify the access token supplied by the client, and perhaps needs to retrieve user information to base an authorization decision on (since one of the requirements is that resources can make the final decision). This is no more than a simple REST call to a check-token or user-information endpoint on the authentication server.

To make this easy for service developers, at least clear documentation is needed on how to do this. It would be useful to have code samples in a number of programming languages.

To complete it, a way to run the service directly on Apache, with just some extra configuration for doing the check and returning information in (environment) variables, would be great. This may include running a reverse proxy that does the authorization, and passing the request on to the real service upon success.