TokenRequest object

The TokenRequest object can get or set the properties for the access token request, including the address of the authorization server, the OAuth 2.0 authorization process, the scope of the access request, the secure protocol, the timeout value etc.

Properties

TokenRequest property

Datatype

Description

ClassDefinition

PowerObject

An object of type PowerObject containing information about the class definition of the object or control.

ClientId

String

Identifier of the registered client issued by the authorization server. If the program sets the "Authorization" request header, this property will be ignored.

ClientSecret

String

Password of the registered client issued by the authorization server. If the program sets the "Authorization" request header, this property will be ignored.

GrantType

String

The type of the authorization process. Values are:

  • password – Resource Owner Password Credentials Grant;

  • client_credentials – Client Credentials Grant;

  • placeholder string – Extension Grant.

Method

String

HTTP method for sending the authentication request. Values are:

GET – HTTP get method;

POST – HTTP post method.

Password

String

The password of the resource owner.

Scope

String

The scope of the access request.

SecureProtocol

Integer

Specifies the secure protocol with the integer value. Values are:

0 – All secure protocols. This is a default value;

1 – TLS1.0;

2 – TLS1.1;

3 – TLS1.2.

Timeout

Long

Specifies the timeout seconds. The default value is 60 and 0 is no timeout.

TokenLocation

String

The URL of the authorization server.

UserName

String

The name of the resource owner.


Functions

TokenRequest function

Datatype returned

Description

AppendParam in PowerScript Reference

Integer

Appends the parameter to the request for Extension Grant only.

ClassName in PowerScript Reference

String

Returns the name assigned to the object.

ClearHeaders in PowerScript Reference

Integer

Clears the header of the request.

ClearParams in PowerScript Reference

Integer

Clears all of the parameters appended by the AppendParam function.

GetContextService in PowerScript Reference

Integer

Creates a reference to a context-specific instance of the specified service.

GetHeader in PowerScript Reference

String

Gets the request header by name.

GetHeaders in PowerScript Reference

String

Gets the header of all of the requests.

GetParent in PowerScript Reference

PowerObject

Returns a reference to the name of the parent object.

SetHeader in PowerScript Reference

Integer

Sets the request header by name.

SetHeaders in PowerScript Reference

Integer

Sets the header information of all of the requests.

TypeOf in PowerScript Reference

Object

Returns the type of the object.