OAuth2 C Reference Documentation
OAuth2
Current Version: 10.0.0
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
Create/Dispose
HCkOAuth2 instance = CkOAuth2_Create(); // ... CkOAuth2_Dispose(instance);
Creates an instance of the HCkOAuth2 object and returns a handle ("void *" pointer). The handle is passed in the 1st argument for the functions listed on this page.
Objects created by calling CkOAuth2_Create must be freed by calling this method. A memory leak occurs if a handle is not disposed by calling this function. Also, any handle returned by a Chilkat "C" function must also be freed by the application by calling the appropriate Dispose method, such as CkOAuth2_Dispose.
Callback Functions
Provides the opportunity for a method call to be aborted. If TRUE is returned, the operation in progress is aborted. Return FALSE to allow the current method call to continue. This callback function is called periodically based on the value of the HeartbeatMs property. (If HeartbeatMs is 0, then no callbacks are made.) As an example, to make 5 AbortCheck callbacks per second, set the HeartbeatMs property equal to 200.
See Also:C Example using Callback Functions
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 callback is only called 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 methods 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).
This callback counts as an AbortCheck callback, and takes the place of the AbortCheck event when it fires.
The return value indicates whether the method call should be aborted, or whether it should proceed. Return TRUE to abort, and FALSE to proceed.
This is a general callback that provides name/value information about what is happening at certain points during a method call. To see the information provided in ProgressInfo callbacks, if any, write code to handle this event and log the name/value pairs. Most are self-explanatory.
Called in the background thread when an asynchronous task completes. (Note: When an async method is running, all callbacks are in the background thread.)
Properties
AccessToken
void CkOAuth2_putAccessToken(HCkOAuth2 cHandle, const char *newVal);
const char *CkOAuth2_accessToken(HCkOAuth2 cHandle);
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" }
AccessTokenResponse
const char *CkOAuth2_accessTokenResponse(HCkOAuth2 cHandle);
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=5134653top
AppCallbackUrl
void CkOAuth2_putAppCallbackUrl(HCkOAuth2 cHandle, const char *newVal);
const char *CkOAuth2_appCallbackUrl(HCkOAuth2 cHandle);
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'] ); ?>
AuthFlowState
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.
AuthorizationEndpoint
void CkOAuth2_putAuthorizationEndpoint(HCkOAuth2 cHandle, const char *newVal);
const char *CkOAuth2_authorizationEndpoint(HCkOAuth2 cHandle);
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.)
topClientId
void CkOAuth2_putClientId(HCkOAuth2 cHandle, const char *newVal);
const char *CkOAuth2_clientId(HCkOAuth2 cHandle);
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:
- Logging into the Google API Console (https://console.developers.google.com).
- Navigate to "Credentials".
- Click on "Create Credentials"
- Choose "OAuth client ID"
- Select the "Other" application type.
- Name your app and click "Create", and a client_id and client_secret will be generated.
ClientSecret
void CkOAuth2_putClientSecret(HCkOAuth2 cHandle, const char *newVal);
const char *CkOAuth2_clientSecret(HCkOAuth2 cHandle);
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.
topCodeChallenge
void CkOAuth2_putCodeChallenge(HCkOAuth2 cHandle, BOOL newVal);
Optional. Set this to TRUE to send a code_challenge (as per RFC 7636) with the authorization request. The default value is FALSE.
topCodeChallengeMethod
void CkOAuth2_putCodeChallengeMethod(HCkOAuth2 cHandle, const char *newVal);
const char *CkOAuth2_codeChallengeMethod(HCkOAuth2 cHandle);
Optional. Only applies when the CodeChallenge property is set to TRUE. Possible values are "plain" or "S256". The default is "S256".
topDebugLogFilePath
void CkOAuth2_putDebugLogFilePath(HCkOAuth2 cHandle, const char *newVal);
const char *CkOAuth2_debugLogFilePath(HCkOAuth2 cHandle);
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:
- a timeout related property was set to 0 to explicitly indicate that an infinite timeout is desired,
- the hang is actually a hang within an event callback (i.e. it is a hang within the application code), or
- there is an internal problem (bug) in the Chilkat code that causes the hang.
FailureInfo
const char *CkOAuth2_failureInfo(HCkOAuth2 cHandle);
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).
topIncludeNonce
void CkOAuth2_putIncludeNonce(HCkOAuth2 cHandle, BOOL newVal);
Optional. Set this to TRUE to send a nonce with the authorization request. The default value is FALSE.
LastErrorHtml
const char *CkOAuth2_lastErrorHtml(HCkOAuth2 cHandle);
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.
topLastErrorText
const char *CkOAuth2_lastErrorText(HCkOAuth2 cHandle);
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.
LastErrorXml
const char *CkOAuth2_lastErrorXml(HCkOAuth2 cHandle);
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.
topLastMethodSuccess
void CkOAuth2_putLastMethodSuccess(HCkOAuth2 cHandle, BOOL newVal);
Indicate whether the last method call succeeded or failed. A value of TRUE indicates success, a value of FALSE 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 = TRUE and failure = FALSE.
- 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 TRUE. For example, a method that returns no value (such as a "void" in C++) will technically always succeed.
topListenPort
void CkOAuth2_putListenPort(HCkOAuth2 cHandle, int newVal);
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.
topListenPortRangeEnd
void CkOAuth2_putListenPortRangeEnd(HCkOAuth2 cHandle, int newVal);
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.
topListenPortSelected
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.
topLocalHost
void CkOAuth2_putLocalHost(HCkOAuth2 cHandle, const char *newVal);
const char *CkOAuth2_localHost(HCkOAuth2 cHandle);
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".
topNonceLength
void CkOAuth2_putNonceLength(HCkOAuth2 cHandle, int newVal);
Defines the length of the nonce in bytes. The nonce is only included if the IncludeNonce property = TRUE. (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.
topRedirectAllowHtml
void CkOAuth2_putRedirectAllowHtml(HCkOAuth2 cHandle, const char *newVal);
const char *CkOAuth2_redirectAllowHtml(HCkOAuth2 cHandle);
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.
topRedirectDenyHtml
void CkOAuth2_putRedirectDenyHtml(HCkOAuth2 cHandle, const char *newVal);
const char *CkOAuth2_redirectDenyHtml(HCkOAuth2 cHandle);
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.
topRedirectReqReceived
const char *CkOAuth2_redirectReqReceived(HCkOAuth2 cHandle);
Contains the HTTP redirect request received from the local web browser. This is used for debugging.
topRefreshToken
void CkOAuth2_putRefreshToken(HCkOAuth2 cHandle, const char *newVal);
const char *CkOAuth2_refreshToken(HCkOAuth2 cHandle);
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
void CkOAuth2_putResource(HCkOAuth2 cHandle, const char *newVal);
const char *CkOAuth2_resource(HCkOAuth2 cHandle);
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.
ResponseMode
void CkOAuth2_putResponseMode(HCkOAuth2 cHandle, const char *newVal);
const char *CkOAuth2_responseMode(HCkOAuth2 cHandle);
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.
ResponseType
void CkOAuth2_putResponseType(HCkOAuth2 cHandle, const char *newVal);
const char *CkOAuth2_responseType(HCkOAuth2 cHandle);
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.
Scope
void CkOAuth2_putScope(HCkOAuth2 cHandle, const char *newVal);
const char *CkOAuth2_scope(HCkOAuth2 cHandle);
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".
topStateParam
void CkOAuth2_putStateParam(HCkOAuth2 cHandle, const char *newVal);
const char *CkOAuth2_stateParam(HCkOAuth2 cHandle);
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.
topTokenEndpoint
void CkOAuth2_putTokenEndpoint(HCkOAuth2 cHandle, const char *newVal);
const char *CkOAuth2_tokenEndpoint(HCkOAuth2 cHandle);
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.)
TokenType
void CkOAuth2_putTokenType(HCkOAuth2 cHandle, const char *newVal);
const char *CkOAuth2_tokenType(HCkOAuth2 cHandle);
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.
topUncommonOptions
void CkOAuth2_putUncommonOptions(HCkOAuth2 cHandle, const char *newVal);
const char *CkOAuth2_uncommonOptions(HCkOAuth2 cHandle);
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.
- ExchangeCodeForTokenUsingJson - Introduced in v9.5.0.98. Use an HTTP POST with JSON request body for the final exchange-code-for-token HTTP request in the authorization code flow.
- RefreshTokenUsingJson - Introduced in v9.5.0.98. Use an HTTP POST with JSON request body for the token refresh HTTP request.
UseBasicAuth
void CkOAuth2_putUseBasicAuth(HCkOAuth2 cHandle, BOOL newVal);
If set to TRUE, 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 FALSE, which causes the client_id/client_secret to be sent as query params.
Utf8
void CkOAuth2_putUtf8(HCkOAuth2 cHandle, BOOL newVal);
When set to TRUE, all "const char *" arguments are interpreted as utf-8 strings. If set to FALSE (the default), then "const char *" arguments are interpreted as ANSI strings. Also, when set to TRUE, and Chilkat method returning a "const char *" is returning the utf-8 representation. If set to FALSE, all "const char *" return values are ANSI strings.
topVerboseLogging
void CkOAuth2_putVerboseLogging(HCkOAuth2 cHandle, BOOL newVal);
If set to TRUE, then the contents of LastErrorText (or LastErrorXml, or LastErrorHtml) may contain more verbose information. The default value is FALSE. Verbose logging should only be used for debugging. The potentially large quantity of logged information may adversely affect peformance.
topVersion
const char *CkOAuth2_version(HCkOAuth2 cHandle);
Methods
AddAuthQueryParam
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 TRUE for success, FALSE for failure.
AddRefreshQueryParam
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 TRUE for success, FALSE for failure.
topAddTokenQueryParam
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 TRUE for success, FALSE for failure.
topCancel
Cancels an OAuth2 authorization flow that is in progress.
Returns TRUE for success, FALSE for failure.
topGetRedirectRequestParam
const char *CkOAuth2_getRedirectRequestParam(HCkOAuth2 cHandle, const char *paramName);
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 TRUE for success, FALSE for failure.
topLoadTaskCaller
Monitor
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 TRUE for success, FALSE for failure.
topMonitorAsync (1)
Creates an asynchronous task to call the Monitor method with the arguments provided. (Async methods are available starting in Chilkat v9.5.0.52.)
Returns NULL on failure
topRefreshAccessToken
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 TRUE for success, FALSE for failure.
RefreshAccessTokenAsync (1)
Creates an asynchronous task to call the RefreshAccessToken method with the arguments provided. (Async methods are available starting in Chilkat v9.5.0.52.)
Returns NULL on failure
topSetRefreshHeader
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 TRUE for success, FALSE for failure.
topSetRefreshHeaderAsync (1)
Creates an asynchronous task to call the SetRefreshHeader method with the arguments provided. (Async methods are available starting in Chilkat v9.5.0.52.)
Returns NULL on failure
topSleepMs
Convenience method to force the calling thread to sleep for a number of milliseconds.
topStartAuth
const char *CkOAuth2_startAuth(HCkOAuth2 cHandle);
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:
- Forms and returns a URL that is to be loaded in a browser.
- 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.
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 TRUE for success, FALSE for failure.
UseConnection
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 TRUE for success, FALSE for failure.