IBM Tivoli Federated Identity Manager, Version 6.2.2.7

OAuth 1.0 template page for errors

Tivoli® Federated Identity Manager uses a generic error template page to show detailed text information when an error occurs in an OAuth 1.0 flow.

The template page is user_error.html.

The following replacement macro is supported:
@OAUTH_ERROR@
This macro is replaced with the native language support (NLS) text of the error message associated with the error.
Figure 1. Template for user_error.html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
	<head>
		<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
		<title>OAuth - Error</title>
	</head>
	<body>
			<h1>OAuth - Error</h1>
			<br />
			<p>The following error occured while processing your OAuth request: </p>
			<p><span class="client">@OAUTH_ERROR@</span></p>
	</body>
</html>


Feedback