Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Span
stylefont-size:2em;font-weight:bold
JAX-RS: OAuth
 

 

Table of Contents

Introduction

...

CXF offers 3 JAX-RS service implementations that can be used to create OAuth 1.0 servers fast: RequestTokenService, AuthorizationRequestService and AccessTokenService.

All of these 3 services rely on the custom OAuthDataProvider which manages request and access tokens. Writing your own OAuthDataProvider implementations is what is needed to get the OAuth server up and running.

RequestTokenService

The main responsibility of of RequestTokenService is to create a temporarily request token and return it back to the consumer. It supports POST and GET requests and returns a form payload containing the new request token and its secret.

...