Back to Playframework

OAuth

documentation/manual/working/javaGuide/main/ws/JavaOAuth.md

3.1.0-M92.2 KB
Original Source
<!--- Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com> -->

OAuth

OAuth is a simple way to publish and interact with protected data. It's also a safer and more secure way for people to give you access. For example, it can be used to access your users' data on Twitter.

There are two very different versions of OAuth: OAuth 1.0 and OAuth 2.0. Version 2 is simple enough to be implemented easily without library or helpers, so Play only provides support for OAuth 1.0.

Usage

To use OAuth, first add ws to your build.sbt file:

@javaws-sbt-dependencies

Required Information

OAuth requires you to register your application to the service provider. Make sure to check the callback URL that you provide, because the service provider may reject your calls if they don't match. When working locally, you can use /etc/hosts to fake a domain on your local machine.

The service provider will give you:

  • Application ID
  • Secret key
  • Request Token URL
  • Access Token URL
  • Authorize URL

Authentication Flow

Most of the flow will be done by the Play library.

  1. Get a request token from the server (in a server-to-server call)
  2. Redirect the user to the service provider, where he will grant your application rights to use his data
  3. The service provider will redirect the user back, giving you a /verifier/
  4. With that verifier, exchange the /request token/ for an /access token/ (server-to-server call)

Now the /access token/ can be passed to any call to access protected data.

More details on OAuth's process flow are available at The OAuth Bible.

Example

conf/routes:

@ws-oauth-routes

controller:

@ws-oauth-controller

Note: OAuth does not provide any protection against MITM attacks. This example shows the OAuth token and secret stored in a session cookie -- for the best security, always use HTTPS with play.http.session.secure=true defined.