See: Description
| Interface | Description |
|---|---|
| UpdateHandler |
Strategy interface for handling real time updates.
|
| Class | Description |
|---|---|
| CanvasSignInController |
Sign in controller that uses the signed_request parameter that Facebook gives to Canvas applications to obtain an access token.
|
| DisconnectController |
Spring MVC controller for handling deauthorization callbacks from Facebook as described at https://developers.facebook.com/docs/authentication/.
|
| FacebookCookieParser |
Helper class that helps extract data from a Facebook cookie.
|
| FacebookInitTag |
JSP Tag for initializing Facebook's JavaScript API.
|
| FacebookWebArgumentResolver |
Web argument resolver that resolves arguments annotated with
FacebookCookieValue. |
| RealTimeUpdate |
Represents a real-time update from Facebook.
|
| RealTimeUpdate.Entry |
Represents a single change entry.
|
| RealTimeUpdateController |
A Spring MVC controller that handles callbacks from Facebook's Real-Time Update API.
|
| SignedRequestArgumentResolver |
Web argument resolver for controller handler method arguments that are annotated with
SignedRequest. |
| SignedRequestDecoder |
Utility class for extracting the payload of a signed request sent by Facebook.
|
| Exception | Description |
|---|---|
| SignedRequestException |
Exception thrown by SignedRequestDecoder when there is a problem in decoding the signed_request parameter.
|
| Annotation Type | Description |
|---|---|
| FacebookCookieValue |
Annotation that indicates to
FacebookWebArgumentResolver that a controller method parameter should be bound
to a value from the Facebook cookie written when the user signed in with Facebook. |
| SignedRequest |