Go to new doc!

+49 228 5552576-0


info@predic8.com

OAuth2 Tutorial using Github as Authentication Service

Help needed?

Do you need any help for this tutorial. Then contact us using the Membrane Google Group or send an email to membrane@predic8.com.

In this tutorial we will see how to communicate with Githubs authorization server using Membrane Service Proxy to authorize HTTP requests based on the RFC 6749 OAuth 2.0 Authorization Framework, OpenID Connect Core and OpenID Connect Discovery .


Figure: The OAuth2 flow

This tutorial explains:

  1. Setup Github as Authorization Server
  2. Setup Membrane as Client
  3. Perform a sample OAuth2 request authorization.

You will need about 10 minutes to complete. A Github account, internet connection and Membrane Service Proxy 4.2.1 or higher is required.

1. Setup Github as Authorization Server

Step 1: Open the Github API console

Go to https://github.com/settings/applications/new.

Step 2: Creating an application

Choose an application name, for example My Secret Resource.

The My Secret Resource will be shown to users together with the required permissions

It should inspire trust for the user to answer "Yes".

Enter the Membrane's public URL as the Homepage URL.

The public URL is the URL your users will be using to access Membrane (or, to be more specific, the secret resource via Membrane). In our case, we use http://localhost:8080. For production use, one might use a publicly registered domain name. This means that only users accessing Membrane from the same host where Membrane is running on will be able to seamlessly login. (Note that other users might still be able to login via manual URL manipulation.)

Enter an application description and the authorization callback URL

The application description is displayed to all potential users of your application. The callback URL is the public URL with a callback path: http://localhost:8080/oauth2callback that gets called by Github after successful authorization.

Click on Register application

Immediately after the creation of the application you client id and client secret are displayed.

Leave this browser tab open, as we later need the Client ID and the Client secret for Membrane's configuration.

Step 3: Configure Membrane Service Proxy

Download the Membrane Service Proxy distribution version 4.2 or above.

Extract the .zip archive and go to the /examples/authorization/oauth2/github directory.

Open Membrane's configuration file, proxies.xml, for editing.

The <router>...</router> element has got following configuration:

    	<serviceProxy port="8080">

			<headerFilter>
				<exclude>X-Authenticated-Login</exclude>
			</headerFilter>

			<oauth2Resource publicURL="http://localhost:8080/">
				<github
					clientId="Enter client ID from Github here"
					clientSecret="Enter client Secret from Github here" />
			</oauth2Resource>

			<!-- this will act as the secret resource to make the example simple. See below in the comments for an alternative -->
			<groovy>
				def email = exc.request.header.getFirstValue("X-Authenticated-Login")
				exc.response = Response.ok("Hello " + email + ".").build()
				RETURN
			</groovy>

			<!--
			Use the <target> instead of the <groovy> interceptor to forward requests to another host:
			<target host="membrane-soa.org" port="80" />
			-->
		</serviceProxy>
			
Listing 1: Sample oauth2 Configuration

Replace the clientId and clientSecret by the ones from your Github API Project.

Step 4: Start Membrane Service Proxy

Go back to your file explorer to the /examples/authorization/oauth2/github directory of Membrane.

Start Membrane by double clicking service-proxy.bat.

The console shows Membrane's log messages.

As configured, Membrane is now listening on port 8080 for incoming HTTP connections. In the next section, we will connect to it using a browser and follow the OAuth2 steps to access our simulated "secret resource".

2. Perform a sample OAuth2 Request Authorization

As the full OAuth2 workflow is quite complex, we only describe a relevant subset in this tutorial.

Step 5: Try to access the "secret resource"

Keep Membrane running (the console open).

Open a browser and go to http://localhost:8080/.

Click on this link.

Click on Authorize application to allow Membrane to retrieve your email address.

Congratulations, you have successfully completed an OAuth2 authorization setup.

Enjoy the simulated "secret resource", a personalized "hello" message from Membrane. ;)

Notes

In our setup, we used a simple, dynamically generated "Hello <your-github-account-name>." page as the secret resource. The secret resource does not have to be hosted within Membrane, but can reside on any other HTTP server Membrane has access to, including localhost.

Closing Comments

You have seen how quickly OAuth2 authorization can be set up using Membrane Service Proxy.

As the communication between the OAuth2 authorization server (Github) and the resource server (Membrane and the secret resource) is not covered by the OAuth2 specification, this is Github-specific.

But as Membrane's oauth2 feature is modular in its source code design, it is easy to implement additional adapters connecting to other authorization services: For example, Amazon, Dropbox, Facebook, Google, Microsoft and Twitter all support OAuth 2.

Please let us know, if you run into any problems.