OAuth2 ActiveX Reference Documentation

OAuth2

Current Version: 9.5.0.97

Implements OAuth2 authorization for desktop (installed) applications, scripts, etc. These are applications that run on a computer where it is possible to popup a browser window, or embed a browser window, to allow the end-user to interactively grant or deny authentication.

In OAuth 2.0 terms, the application is considered to be a "public" client type, or a "native application". (In OAuth 2.0 terminology, a fully managed .NET desktop application is still a "native application".) This OAuth2 API helps implement the "Authorization Code Grant" flow to obtain both access tokens and refresh tokens. See Section 4.1 of RFC 6749.

In other commonly used terminology, this OAuth2 class helps to implement "Three Legged" OAuth2 Authorization. See http://oauthbible.com/#oauth-2-three-legged

Object Creation

(ASP)
set obj = Server.CreateObject("Chilkat_9_5_0.OAuth2")

(AutoIt)
$obj = ObjCreate("Chilkat_9_5_0.OAuth2")

(Visual Basic 6.0)
Dim obj As New ChilkatOAuth2

(VBScript)
set obj = CreateObject("Chilkat_9_5_0.OAuth2")

(Delphi)
obj := TChilkatOAuth2.Create(Self);

(FoxPro)
loObject = CreateObject('Chilkat_9_5_0.OAuth2')

(PowerBuilder)
lole_object = create oleobject
li_rc = lole_object.ConnectToNewObject("Chilkat_9_5_0.OAuth2")

(SQL Server)
EXEC @hr = sp_OACreate 'Chilkat_9_5_0.OAuth2', @obj OUT

(Javascript)
var obj = new ActiveXObject("Chilkat_9_5_0.OAuth2");

Properties

AccessToken
AccessToken As String
Introduced in version 9.5.0.59

When the OAuth2 three-legged authorization has successfully completed in the background thread, this property contains the access_token.

For example, a successful Google API JSON response looks like this:

 {
             "access_token": "ya29.Ci9ZA-Z0Q7vtnch8xxxxxxxxxxxxxxgDVOOV97-IBvTt958xxxxxx1sasw",
             "token_type": "Bearer",

            "expires_in": 3600,

            "refresh_token": "1/fYjEVR-3Oq9xxxxxxxxxxxxxxLzPtlNOeQ"
}

More Information and Examples
(AutoIt) Facebook OAuth2 Access Token(Classic ASP) Facebook OAuth2 Access Token(PowerBuilder) Facebook OAuth2 Access Token(SQL Server) Facebook OAuth2 Access Token(VBScript) Facebook OAuth2 Access Token(Visual Basic 6.0) Facebook OAuth2 Access Token(Visual FoxPro) Facebook OAuth2 Access Token(AutoIt) Google OAuth2 Access Token(Classic ASP) Google OAuth2 Access Token(PowerBuilder) Google OAuth2 Access Token(SQL Server) Google OAuth2 Access Token(VBScript) Google OAuth2 Access Token(Visual Basic 6.0) Google OAuth2 Access Token(Visual FoxPro) Google OAuth2 Access Token(AutoIt) LinkedIn OAuth2 Access Token(Classic ASP) LinkedIn OAuth2 Access Token(PowerBuilder) LinkedIn OAuth2 Access Token(SQL Server) LinkedIn OAuth2 Access Token(VBScript) LinkedIn OAuth2 Access Token(Visual Basic 6.0) LinkedIn OAuth2 Access Token(Visual FoxPro) LinkedIn OAuth2 Access Token(AutoIt) Salesforce OAuth2 Access Token(Classic ASP) Salesforce OAuth2 Access Token(PowerBuilder) Salesforce OAuth2 Access Token(SQL Server) Salesforce OAuth2 Access Token(VBScript) Salesforce OAuth2 Access Token(Visual Basic 6.0) Salesforce OAuth2 Access Token(Visual FoxPro) Salesforce OAuth2 Access Token(AutoIt) GitHub OAuth2 Access Token(Classic ASP) GitHub OAuth2 Access Token(PowerBuilder) GitHub OAuth2 Access Token(SQL Server) GitHub OAuth2 Access Token(VBScript) GitHub OAuth2 Access Token(Visual Basic 6.0) GitHub OAuth2 Access Token(Visual FoxPro) GitHub OAuth2 Access Token(AutoIt) Using the OAuth2 Authorization Token in REST API Calls(Classic ASP) Using the OAuth2 Authorization Token in REST API Calls(PowerBuilder) Using the OAuth2 Authorization Token in REST API Calls(SQL Server) Using the OAuth2 Authorization Token in REST API Calls(VBScript) Using the OAuth2 Authorization Token in REST API Calls(Visual Basic 6.0) Using the OAuth2 Authorization Token in REST API Calls(Visual FoxPro) Using the OAuth2 Authorization Token in REST API Calls
top
AccessTokenResponse
AccessTokenResponse As String (read-only)
Introduced in version 9.5.0.59

When the OAuth2 three-legged authorization has completed in the background thread, this property contains the response that contains the access_token, the optional refresh_token, and any other information included in the final response. If the authorization was denied, then this contains the error response.

For example, a successful JSON response for a Google API looks like this:

 {
             "access_token": "ya29.Ci9ZA-Z0Q7vtnch8xxxxxxxxxxxxxxgDVOOV97-IBvTt958xxxxxx1sasw",
             "token_type": "Bearer",

            "expires_in": 3600,

            "refresh_token": "1/fYjEVR-3Oq9xxxxxxxxxxxxxxLzPtlNOeQ"
}

Note: Not all responses are JSON. A successful Facebook response is plain text and looks like this:

access_token=EAAZALuOC1wAwBAKH6FKnxOkjfEP ... UBZBhYD5hSVBETBx6AZD&expires=5134653

top
AppCallbackUrl
AppCallbackUrl As String
Introduced in version 9.5.0.73

Some OAuth2 services, such as QuickBooks, do not allow for "http://localhost:port" callback URLs. When this is the case, a desktop app cannot pop up a browser and expect to get the final redirect callback. The workaround is to set this property to a URI on your web server, which sends a response to redirect back to "http://localhost:3017". Thus the callback becomes a double redirect, which ends at localhost:port, and thus completes the circuit.

If the OAuth2 service allows for "http://localhost:port" callback URLs, then leave this property empty.

As an example, one could set this property to "https://www.yourdomain.com/OAuth2.php", where the PHP source contains the following:

<?php
  header( 'Location: http://localhost:3017?' . $_SERVER['QUERY_STRING'] );
?>

top
AuthFlowState
AuthFlowState As Long (read-only)
Introduced in version 9.5.0.59

Indicates the current progress of the OAuth2 three-legged authorization flow. Possible values are:

0: Idle. No OAuth2 has yet been attempted.
1: Waiting for Redirect. The OAuth2 background thread is waiting to receive the redirect HTTP request from the browser.
2: Waiting for Final Response. The OAuth2 background thread is waiting for the final access token response.
3: Completed with Success. The OAuth2 flow has completed, the background thread exited, and the successful JSON response is available in AccessTokenResponse property.
4: Completed with Access Denied. The OAuth2 flow has completed, the background thread exited, and the error JSON is available in AccessTokenResponse property.
5: Failed Prior to Completion. The OAuth2 flow failed to complete, the background thread exited, and the error information is available in the FailureInfo property.

top
AuthorizationEndpoint
AuthorizationEndpoint As String
Introduced in version 9.5.0.59

The URL used to obtain an authorization grant. For example, the Google APIs authorization endpoint is "https://accounts.google.com/o/oauth2/v2/auth". (In three-legged OAuth2, this is the very first point of contact that begins the OAuth2 authentication flow.)

top
ClientId
ClientId As String
Introduced in version 9.5.0.59

The "client_id" that identifies the application.

For example, if creating an app to use a Google API, one would create a client ID by:

  1. Logging into the Google API Console (https://console.developers.google.com).
  2. Navigate to "Credentials".
  3. Click on "Create Credentials"
  4. Choose "OAuth client ID"
  5. Select the "Other" application type.
  6. Name your app and click "Create", and a client_id and client_secret will be generated.
Other API's, such as Facebook, should have something similar for generating a client ID and client secret.

top
ClientSecret
ClientSecret As String
Introduced in version 9.5.0.59

The "client_secret" for the application. Application credentials (i.e. what identifies the application) consist of a client_id and client_secret. See the ClientId property for more information.

Is the Client Secret Really a Secret?

This deserves some explanation. For a web-based application (where the code is on the web server) and the user interacts with the application in a browser, then YES, the client secret MUST be kept secret at all times. One does not want to be interacting with a site that claims to be "Application XYZ" but is actually an impersonator. But the Chilkat OAuth2 class is for desktop applications and scripts (i.e. things that run on the local computer, not in a browser).

Consider Mozilla Thunderbird. It is an application installed on your computer. Thunderbird uses OAuth2 authentication for GMail accounts in the same way as this OAuth2 API. When you add a GMail account and need to authenticate for the 1st time, you'll get a popup window (a browser) where you interactively grant authorization to Thunderbird. You implicitly know the Thunderbird application is running because you started it. There can be no impersonation unless your computer has already been hacked and when you thought you started Thunderbird, you actually started some rogue app. But if you already started some rogue app, then all has already been lost.

It is essentially impossible for desktop applications to embed a secret key (such as the client secret) and assure confidentiality (i.e. that the key cannot be obtained by some hacker. An application can hide the secret, and can make it difficult to access, but in the end the secret cannot be assumed to be safe. Therefore, the client_secret, for desktop (installed) applications is not actually secret. One should still take care to shroud the client secret to some extent, but know that whatever is done cannot be deemed secure. But this is OK. The reason it is OK is that implicitly, when a person starts an application (such as Thunderbird), the identity of the application is known. If a fake Thunderbird was started, then all has already been lost. The security of the system is in preventing the fake/rogue applications in the 1st place. If that security has already been breached, then nothing else really matters.

top
CodeChallenge
CodeChallenge As Long
Introduced in version 9.5.0.59

Optional. Set this to 1 to send a code_challenge (as per RFC 7636) with the authorization request. The default value is 0.

top
CodeChallengeMethod
CodeChallengeMethod As String
Introduced in version 9.5.0.59

Optional. Only applies when the CodeChallenge property is set to 1. Possible values are "plain" or "S256". The default is "S256".

top
DebugLogFilePath
DebugLogFilePath As String

If set to a file path, causes each Chilkat method or property call to automatically append it's LastErrorText to the specified log file. The information is appended such that if a hang or crash occurs, it is possible to see the context in which the problem occurred, as well as a history of all Chilkat calls up to the point of the problem. The VerboseLogging property can be set to provide more detailed information.

This property is typically used for debugging the rare cases where a Chilkat method call hangs or generates an exception that halts program execution (i.e. crashes). A hang or crash should generally never happen. The typical causes of a hang are:

  1. a timeout related property was set to 0 to explicitly indicate that an infinite timeout is desired,
  2. the hang is actually a hang within an event callback (i.e. it is a hang within the application code), or
  3. there is an internal problem (bug) in the Chilkat code that causes the hang.

top
FailureInfo
FailureInfo As String (read-only)
Introduced in version 9.5.0.59

If the OAuth2 three-legged authorization failed prior to completion (the AuthFlowState = 5), then information about the failure is contained in this property. This property is automatically cleared when OAuth2 authorization starts (i.e. when StartAuth is called).

top
IncludeNonce
IncludeNonce As Long
Introduced in version 9.5.0.78

Optional. Set this to 1 to send a nonce with the authorization request. The default value is 0.

top
LastBinaryResult
LastBinaryResult As Variant (read-only)

The binary data returned by the last (binary data returning) method called. Only available if Chilkat.Global.KeepBinaryResult is set to 1. This provides a means for obtaining large varbinary results in the SQL Server environment (where limitations exist in getting large amounts of data returned by method calls, but where temp tables can be used for binary properties).

top
LastErrorHtml
LastErrorHtml As String (read-only)

Provides information in HTML format about the last method/property called. If a method call returns a value indicating failure, or behaves unexpectedly, examine this property to get more information.

top
LastErrorText
LastErrorText As String (read-only)

Provides information in plain-text format about the last method/property called. If a method call returns a value indicating failure, or behaves unexpectedly, examine this property to get more information.

top
LastErrorXml
LastErrorXml As String (read-only)

Provides information in XML format about the last method/property called. If a method call returns a value indicating failure, or behaves unexpectedly, examine this property to get more information.

top
LastMethodSuccess
LastMethodSuccess As Long

Indicate whether the last method call succeeded or failed. A value of 1 indicates success, a value of 0 indicates failure. This property is automatically set for method calls. It is not modified by property accesses. The property is automatically set to indicate success for the following types of method calls:

  • Any method that returns a string.
  • Any method returning a Chilkat object, binary bytes, or a date/time.
  • Any method returning a standard boolean status value where success = 1 and failure = 0.
  • Any method returning an integer where failure is defined by a return value less than zero.

Note: Methods that do not fit the above requirements will always set this property equal to 1. For example, a method that returns no value (such as a "void" in C++) will technically always succeed.

top
LastStringResult
LastStringResult As String (read-only)

The string return value of the last (string returning) method called. Only available if Chilkat.Global.KeepStringResult is set to 1. This provides a means for obtaining large string results in the SQL Server environment (where limitations exist in getting long strings returned by method calls, but where temp tables can be used for string properties).

top
LastStringResultLen
LastStringResultLen As Long (read-only)

The length, in characters, of the string contained in the LastStringResult property.

top
ListenPort
ListenPort As Long
Introduced in version 9.5.0.59

The port number to listen for the redirect URI request sent by the browser. If set to 0, then a random unused port is used. The default value of this property is 0.

In most cases, using a random unused port is the best choice. In some OAuth2 situations, such as with Facebook, a specific port number must be chosen. This is due to the fact that Facebook requires an APP to have a Site URL, which must exactly match the redirect_uri used in OAuth2 authorization. For example, the Facebook Site URL might be "http://localhost:3017/" if port 3017 is the listen port.

top
ListenPortRangeEnd
ListenPortRangeEnd As Long
Introduced in version 9.5.0.69

If set, then an unused port will be chosen in the range from the ListenPort property to this property. Some OAuth2 services, such as Google, require that callback URL's, including port numbers, be selected in advance. This feature allows for a range of callback URL's to be specified to cope with the possibility that another application on the same computer might be using a particular port.

For example, a Google ClientID might be configured with a set of authorized callback URI's such as:

  • http://localhost:55110/
  • http://localhost:55112/
  • http://localhost:55113/
  • http://localhost:55114/
  • http://localhost:55115/
  • http://localhost:55116/
  • http://localhost:55117/

In which case the ListenPort property would be set to 55110, and this property would be set to 55117.

top
ListenPortSelected
ListenPortSelected As Long (read-only)
Introduced in version 9.5.0.94

If a listen port range was specified by setting both the ListenPort and ListenPortRangeEnd properties, then the StartAuth method will select and listen at an unused port in the range. After StartAuth is called, this property will contain the chosen port number.

top
LocalHost
LocalHost As String
Introduced in version 9.5.0.59

Defaults to "localhost". This should typically remain at the default value. It is the loopback domain or IP address used for the redirect_uri. For example, "http://localhost:2012/". (assuming 2012 was used or randomly chosen as the listen port number) If the desired redirect_uri is to be "http://127.0.0.1:2012/", then set this property equal to "127.0.0.1".

top
NonceLength
NonceLength As Long
Introduced in version 9.5.0.80

Defines the length of the nonce in bytes. The nonce is only included if the IncludeNonce property = 1. (The length of the nonce in characters will be twice the length in bytes, because the nonce is a hex string.)

The default nonce length is 4 bytes.

top
RedirectAllowHtml
RedirectAllowHtml As String
Introduced in version 9.5.0.59

This property contains the HTML returned to the browser when access is allowed by the end-user. The default value is HTML that contains a META refresh to https://www.chilkatsoft.com/oauth2_allowed.html. Your application should set this property to display whatever HTML is desired when access is granted.

The default value of this property is:

<html>
  <head><meta http-equiv='refresh' content='0;url=https://www.chilkatsoft.com/oauth2_allowed.html'></head>
  <body>Thank you for allowing access.</body>
</html>

You may wish to change the refresh URL to a web page on your company website. Alternatively, you can provide simple HTML that does not redirect anywhere but displays whatever information you desire.

top
RedirectDenyHtml
RedirectDenyHtml As String
Introduced in version 9.5.0.59

The HTML returned to the browser when access is denied by the end-user. The default value is HTMl that contains a META refresh to https://www.chilkatsoft.com/oauth2_denied.html. Your application should set this property to display whatever HTML is desired when access is denied.

The default value of this property is:

<html>
  <head><meta http-equiv='refresh' content='0;url=https://www.chilkatsoft.com/oauth2_denied.html'></head>
  <body>The app will not have access.</body>
  </html>

You may wish to change the refresh URL to a web page on your company website. Alternatively, you can provide simple HTML that does not redirect anywhere but displays whatever information you desire.

top
RedirectReqReceived
RedirectReqReceived As String (read-only)
Introduced in version 9.5.0.92

Contains the HTTP redirect request received from the local web browser. This is used for debugging.

top
RefreshToken
RefreshToken As String
Introduced in version 9.5.0.59

When the OAuth2 three-legged authorization has successfully completed in the background thread, this property contains the refresh_token, if present.

For example, a successful Google API JSON response looks like this:

 {
             "access_token": "ya29.Ci9ZA-Z0Q7vtnch8xxxxxxxxxxxxxxgDVOOV97-IBvTt958xxxxxx1sasw",
             "token_type": "Bearer",

            "expires_in": 3600,

            "refresh_token": "1/fYjEVR-3Oq9xxxxxxxxxxxxxxLzPtlNOeQ"
}

top
Resource
Resource As String
Introduced in version 9.5.0.67

This is an optional setting that defines the "resource" query parameter. For example, to call the Microsoft Graph API, set this property value to "https://graph.microsoft.com/". The Microsoft Dynamics CRM OAuth authentication also requires the Resource property.

top
ResponseMode
ResponseMode As String
Introduced in version 9.5.0.78

Can be set to "form_post" to include a "response_mode=form_post" in the authorization request. The default value is the empty string to omit the "response_mode" query param.

top
ResponseType
ResponseType As String
Introduced in version 9.5.0.78

The default value is "code". Can be set to "id_token+code" for cases where "response_type=id_token+code" is required in the authorization request.

top
Scope
Scope As String
Introduced in version 9.5.0.59

This is an optional setting that defines the scope of access. For example, Google API scopes are listed here: https://developers.google.com/identity/protocols/googlescopes

For example, if wishing to grant OAuth2 authorization for Google Drive, one would set this property to "https://www.googleapis.com/auth/drive".

top
StateParam
StateParam As String
Introduced in version 9.5.0.94

Allows the application to explicitly set the state parameter to a value. Typically this property should remain unset, and Chilkat will automatically generate a random state. (The generated random state is not reflected in this property. In other words, you can't get the random state that was generated by reading this property.)

Note: The special string "{listenPort}" can be included in the value of this property. Chilkat will replace "{listenPort}" with the actual listen port used. This can be useful if your application is listening on range of ports and you want the state param to include the chosen port.

top
TokenEndpoint
TokenEndpoint As String
Introduced in version 9.5.0.59

The URL for exchanging an authorization grant for an access token. For example, the Google APIs token endpoint is "https://www.googleapis.com/oauth2/v4/token". (In three-legged OAuth2, this is the very last point of contact that ends the OAuth2 authentication flow.)

top
TokenType
TokenType As String
Introduced in version 9.5.0.59

When the OAuth2 three-legged authorization has successfully completed in the background thread, this property contains the token_type, if present.

A successful Google API JSON response looks like this:

 {
             "access_token": "ya29.Ci9ZA-Z0Q7vtnch8xxxxxxxxxxxxxxgDVOOV97-IBvTt958xxxxxx1sasw",
             "token_type": "Bearer",

            "expires_in": 3600,

            "refresh_token": "1/fYjEVR-3Oq9xxxxxxxxxxxxxxLzPtlNOeQ"
}

Note: Some responses may not included a "token_type" param. In that case, this property will remain empty.

top
UncommonOptions
UncommonOptions As String
Introduced in version 9.5.0.85

This is a catch-all property to be used for uncommon needs. This property defaults to the empty string, and should typically remain empty.

Can be set to a list of the following comma separated keywords:

  • "NO_OAUTH2_SCOPE" - Do not includethe "scope" parameter when exchanging the authorization code for an access token.

top
UseBasicAuth
UseBasicAuth As Long
Introduced in version 9.5.0.73

If set to 1, then the internal POST (on the background thread) that exchanges the code for an access token will send the client_id/client_secret in an "Authorization Basic ..." header where the client_id is the login and the client_secret is the password.

Some services, such as fitbit.com, require the client_id/client_secret to be passed in this way.

The default value of this property is 0, which causes the client_id/client_secret to be sent as query params.

top
VerboseLogging
VerboseLogging As Long

If set to 1, then the contents of LastErrorText (or LastErrorXml, or LastErrorHtml) may contain more verbose information. The default value is 0. Verbose logging should only be used for debugging. The potentially large quantity of logged information may adversely affect peformance.

top
Version
Version As String (read-only)

Version of the component/library, such as "9.5.0.94"

top

Methods

AddAuthQueryParam
AddAuthQueryParam(name As String, value As String) As Long
Introduced in version 9.5.0.85

Adds an additional custom query param (name=value) to the URL that is returned by the StartAuth method. This method exists to satisfy OAuth installations that require non-standard/custom query parms. This method can be called multiple times, once per additional query parm to be added.

Returns 1 for success, 0 for failure.

top
AddRefreshQueryParam
AddRefreshQueryParam(name As String, value As String) As Long
Introduced in version 9.5.0.97

Adds an additional query param (name=value) to the HTTP request sent in the RefreshAccessToken method. This method can be called multiple times, once per additional query parm to be added.

Returns 1 for success, 0 for failure.

top
AddTokenQueryParam
AddTokenQueryParam(name As String, value As String) As Long
Introduced in version 9.5.0.85

Adds an additional custom query param (name=value) to the request that occurs (internally) to exchange the authorization code for a token. This method exists to satisfy OAuth installations that require non-standard/custom query parms. This method can be called multiple times, once per additional query parm to be added.

Returns 1 for success, 0 for failure.

top
Cancel
Cancel() As Long
Introduced in version 9.5.0.59

Cancels an OAuth2 authorization flow that is in progress.

Returns 1 for success, 0 for failure.

top
GetRedirectRequestParam
GetRedirectRequestParam(paramName As String) As String
Introduced in version 9.5.0.69

Some OAuth2 providers can provide additional parameters in the redirect request sent to the local listener (i.e. the Chilkat background thread). One such case is for QuickBooks, It contains a realmId parameter such as the following:

http://localhost:55568/?state=xxxxxxxxxxxx&code=xxxxxxxxxxxx&realmId=1234567890

After the OAuth2 authentication is completed, an application can call this method to get any of the parameter values. For example, to get the realmId value, pass "realmId" in paramName.

Returns Nothing on failure

top
LoadTaskCaller
LoadTaskCaller(task As ChilkatTask) As Long
Introduced in version 9.5.0.80

Loads the caller of the task's async method.

Returns 1 for success, 0 for failure.

top
Monitor
Monitor() As Long
Introduced in version 9.5.0.59

Monitors an already started OAuth2 authorization flow and returns when it is finished.

Note: It rarely makes sense to call this method. If this programming language supports callbacks, then MonitorAsync is a better choice. (See the Oauth2 project repositories at https://github.com/chilkatsoft for samples.) If a programming language does not have callbacks, a better choice is to periodically check the AuthFlowState property for a value >= 3. If there is no response from the browser, the background thread (that is waiting on the browser) can be cancelled by calling the Cancel method.

Returns 1 for success, 0 for failure.

top
MonitorAsync (1) (2) (AutoIt) (Classic ASP) (PowerBuilder) (SQL Server) (VBScript) (Visual Basic 6.0) (Visual FoxPro)
MonitorAsync() As ChilkatTask
Introduced in version 9.5.0.59

Creates an asynchronous task to call the Monitor method with the arguments provided. (Async methods are available starting in Chilkat v9.5.0.52.)

Note: Async method event callbacks happen in the background thread. Accessing and updating UI elements existing in the main thread may require special considerations.

Returns Nothing on failure

top
RefreshAccessToken
RefreshAccessToken() As Long
Introduced in version 9.5.0.59

Sends a refresh request to the token endpoint to obtain a new access token. After a successful refresh request, the AccessToken and RefreshToken properties will be updated with new values.

Note: This method can only be called if the ClientId, ClientSecret, RefreshToken and TokenEndpoint properties contain valid values.

Returns 1 for success, 0 for failure.

top
RefreshAccessTokenAsync (1) (2) (AutoIt) (Classic ASP) (PowerBuilder) (SQL Server) (VBScript) (Visual Basic 6.0) (Visual FoxPro)
RefreshAccessTokenAsync() As ChilkatTask
Introduced in version 9.5.0.59

Creates an asynchronous task to call the RefreshAccessToken method with the arguments provided. (Async methods are available starting in Chilkat v9.5.0.52.)

Note: Async method event callbacks happen in the background thread. Accessing and updating UI elements existing in the main thread may require special considerations.

Returns Nothing on failure

top
SetRefreshHeader
SetRefreshHeader(name As String, value As String) As Long
Introduced in version 9.5.0.77

Provides for the ability to add HTTP request headers for the request sent by the RefreshAccesToken method. For example, if the "Accept: application/json" header needs to be sent, then add it by calling this method with name = "Accept" and value = "application/json".

Multiple headers may be added by calling this method once for each. To remove a header, call this method with name equal to the header name, and with an empty string for value.

Returns 1 for success, 0 for failure.

top
SetRefreshHeaderAsync (1) (2) (AutoIt) (Classic ASP) (PowerBuilder) (SQL Server) (VBScript) (Visual Basic 6.0) (Visual FoxPro)
SetRefreshHeaderAsync(name As String, value As String) As ChilkatTask
Introduced in version 9.5.0.77

Creates an asynchronous task to call the SetRefreshHeader method with the arguments provided. (Async methods are available starting in Chilkat v9.5.0.52.)

Note: Async method event callbacks happen in the background thread. Accessing and updating UI elements existing in the main thread may require special considerations.

Returns Nothing on failure

top
SleepMs
SleepMs(ByVal millisec As Long)
Introduced in version 9.5.0.59

Convenience method to force the calling thread to sleep for a number of milliseconds.

top
StartAuth
StartAuth() As String
Introduced in version 9.5.0.59

Initiates the three-legged OAuth2 flow. The various properties, such as ClientId, ClientSecret, Scope, CodeChallenge, AuthorizationEndpoint, and TokenEndpoint, should be set prior to calling this method.

This method does two things:

  1. Forms and returns a URL that is to be loaded in a browser.
  2. Starts a background thread that listens on a randomly selected unused port to receive the redirect request from the browser. The receiving of the request from the browser, and the sending of the HTTP request to complete the three-legged OAuth2 flow is done entirely in the background thread. The application controls this behavior by setting the various properties beforehand.
The return value is the URL to be loaded (navigated to) in a popup or embedded browser.

Note: It's best not to call StartAuth if a previous call to StartAuth is in a non-completed state. However, starting in v9.5.0.76, if a background thread from a previous call to StartAuth is still running, it will be automatically canceled. However,rather than relying on this automatic behavior, your application should explicity Cancel the previous StartAuth before calling again.

Returns Nothing on failure

More Information and Examples
Explaining OAuth2.StartAuth in more Detail(AutoIt) Facebook OAuth2 Access Token(Classic ASP) Facebook OAuth2 Access Token(PowerBuilder) Facebook OAuth2 Access Token(SQL Server) Facebook OAuth2 Access Token(VBScript) Facebook OAuth2 Access Token(Visual Basic 6.0) Facebook OAuth2 Access Token(Visual FoxPro) Facebook OAuth2 Access Token(AutoIt) Google OAuth2 Access Token(Classic ASP) Google OAuth2 Access Token(PowerBuilder) Google OAuth2 Access Token(SQL Server) Google OAuth2 Access Token(VBScript) Google OAuth2 Access Token(Visual Basic 6.0) Google OAuth2 Access Token(Visual FoxPro) Google OAuth2 Access Token(AutoIt) LinkedIn OAuth2 Access Token(Classic ASP) LinkedIn OAuth2 Access Token(PowerBuilder) LinkedIn OAuth2 Access Token(SQL Server) LinkedIn OAuth2 Access Token(VBScript) LinkedIn OAuth2 Access Token(Visual Basic 6.0) LinkedIn OAuth2 Access Token(Visual FoxPro) LinkedIn OAuth2 Access Token(AutoIt) Salesforce OAuth2 Access Token(Classic ASP) Salesforce OAuth2 Access Token(PowerBuilder) Salesforce OAuth2 Access Token(SQL Server) Salesforce OAuth2 Access Token(VBScript) Salesforce OAuth2 Access Token(Visual Basic 6.0) Salesforce OAuth2 Access Token(Visual FoxPro) Salesforce OAuth2 Access Token(AutoIt) GitHub OAuth2 Access Token(Classic ASP) GitHub OAuth2 Access Token(PowerBuilder) GitHub OAuth2 Access Token(SQL Server) GitHub OAuth2 Access Token(VBScript) GitHub OAuth2 Access Token(Visual Basic 6.0) GitHub OAuth2 Access Token(Visual FoxPro) GitHub OAuth2 Access Token(AutoIt) Using the OAuth2 Authorization Token in REST API Calls(Classic ASP) Using the OAuth2 Authorization Token in REST API Calls(PowerBuilder) Using the OAuth2 Authorization Token in REST API Calls(SQL Server) Using the OAuth2 Authorization Token in REST API Calls(VBScript) Using the OAuth2 Authorization Token in REST API Calls(Visual Basic 6.0) Using the OAuth2 Authorization Token in REST API Calls(Visual FoxPro) Using the OAuth2 Authorization Token in REST API Calls
top
UseConnection
UseConnection(sock As ChilkatSocket) As Long
Introduced in version 9.5.0.59

Calling this method is optional, and is only required if a proxy (HTTP or SOCKS), an SSH tunnel, or if special connection related socket options need to be used. When UseConnection is not called, the connection to the token endpoint is a direct connection using TLS (or not) based on the TokenEndpoint. (If the TokenEndpoint begins with "https://", then TLS is used.)

This method sets the socket object to be used for sending the requests to the token endpoint in the background thread. The sock can be an already-connected socket, or a socket object that is not yet connected. In some cases, such as for a connection through an SSH tunnel, the sock must already be connected. In other cases, an unconnected sock can be provided because the purpose for providing the socket object is to specify settings such as for HTTP or SOCKS proxies.

Returns 1 for success, 0 for failure.

top

Events

AbortCheck
AbortCheck(abort As Long)

Provides the opportunity for a method call to be aborted. The AbortCheck event is fired periodically based on the value of the HeartbeatMs property. If HeartbeatMs is 0, then no AbortCheck events will fire. As an example, to fire 5 AbortCheck events per second, set the HeartbeatMs property equal to 200.

VB6 Event callback implementation:

Important: Event callbacks from asynchronous method calls are generally not possible from the ActiveX. See VB6 Async Callbacks

Dim WithEvents myOauth As ChilkatOAuth2

Private Sub myOauth_AbortCheck(abort As Long)

	'Insert application code here.

End Sub
top
PercentDone
PercentDone(ByVal pctDone As Long, abort As Long)

Provides the percentage completed for any method that involves network communications or time-consuming processing (assuming it is a method where a percentage completion can be measured). This event is only fired when it is possible to know a percentage completion, and when it makes sense to express the operation as a percentage completed. The pctDone argument will have a value from 1 to 100. For operations (Chilkat method calls) that complete very quickly, the number of PercentDone callbacks will vary, but the final callback should have a value of 100. For long running operations, no more than one callback per percentage point will occur (for example: 1, 2, 3, ... 98, 99, 100).

The PercentDone callback counts as an AbortCheck event. For method calls that complete quickly such that PercentDone events fire, it may be that AbortCheck events don't fire because the opportunity to abort is already provided in the PercentDone callback. For time consuming operations, where the amount of time between PercentDone callbacks are long, AbortCheck callbacks may be used to allow for the operation to be aborted in a more responsive manner.

The abort output argument provides a means for aborting the operation. Setting it to 1 will cause the method to abort and return a failed status (or whatever return value indicates failure).

VB6 Event callback implementation:

Important: Event callbacks from asynchronous method calls are generally not possible from the ActiveX. See VB6 Async Callbacks

Dim WithEvents myOauth As ChilkatOAuth2

Private Sub myOauth_PercentDone(ByVal pctDone As Long, abort As Long)

	'Insert application code here.

End Sub
top
ProgressInfo
ProgressInfo(ByVal name As String, ByVal value As String)

A general name/value event that provides information about what is happening during a method call. To find out what information is available, write code to handle this event and log the name/value pairs. Most are self-explanatory.

VB6 Event callback implementation:

Important: Event callbacks from asynchronous method calls are generally not possible from the ActiveX. See VB6 Async Callbacks

Dim WithEvents myOauth As ChilkatOAuth2

Private Sub myOauth_ProgressInfo(ByVal name As String, ByVal value As String)

	'Insert application code here.

End Sub
top