Provides an OAuth or OIDC token for authentication.

The calling application is responsible for obtaining an OAuth or OIDC token representing the authenticated user in any manner it chooses. For example, the client may obtain it by integrating their application with an OAuth/OIDC Identity Provider (IdP). Or the token may be propagated to the caller from another service. The application can even use the OAuth Resource Owner Password Credentials (ROPC) grant to obtain it from an OAuth server using username/password credentials.

Namespace:  FileNet.Api.Authentication
Assembly:  FileNet.Api (in FileNet.Api.dll)

ToggleSyntax

Visual Basic (Declaration)
Public NotInheritable Class OpenTokenCredentials _
	Inherits Credentials
C#
public sealed class OpenTokenCredentials : Credentials
Visual C++
public ref class OpenTokenCredentials sealed : public Credentials
JavaScript
FileNet.Api.Authentication.OpenTokenCredentials = function();

Type.createClass(
	'FileNet.Api.Authentication.OpenTokenCredentials',
	FileNet.Api.Authentication.Credentials);

ToggleInheritance Hierarchy

System..::.Object
  FileNet.Api.Authentication..::.Credentials
    FileNet.Api.Authentication..::.OpenTokenCredentials

ToggleSee Also