Headless Machines
Using OAuth on a Headless Machine
The following sections show how to authenticate a headless server or another machine on which the driver cannot open a browser. You can authenticate with a user account.User Accounts
To authenticate with a user account, you need to authenticate from another machine. Authentication is a two-step process.- Instead of installing the driver on another machine, you can follow the steps below to obtain the OAuthVerifier value. Or, you can install the driver on another machine and transfer the OAuth authentication values, after you authenticate through the usual browser-based flow.
Using the Credentials for a Custom OAuth App
Obtain ClientId and ClientSecret
Visit https://trello.com/app-key to obtain the ClientId under Key and ClientSecret under Secret at the bottom of the page.
Obtain an OAuth Verifier
Set the following properties on the headless machine:
- InitiateOAuth: Set this to OFF.
- Save the value of the returned AuthToken and AuthKey. They will be used in the next step.
- Open the returned URL in a browser. Log in and grant permissions to the driver. You are then redirected to the callback URL, which contains the verifier code.
- OAuthClientId: Set this to the Client Key obtained.
- OAuthClientSecret: Set this to the Secret Key obtained.
You can then follow the steps below to authenticate from another machine and obtain the OAuthVerifier connection property.
- Call the GetOAuthAuthorizationURL stored procedure.
- Open the returned URL in a browser. Log in and grant permissions to the driver. You are then redirected to the CallbackURL, which contains the oauth verifier.
- Save the value of the oauth_verifier query parameter. You will set this in the OAuthVerifier connection property.
On the headless machine, set the following connection properties to obtain the OAuth authentication values:
- OAuthClientId: Set this to the Client Key obtained.
- OAuthClientSecret: Set this to the Secret Key obtained.
- OAuthVerifier: Set this to the oauth verifier.
- AuthToken: Set this to the AuthToken.
- AuthKey: Set this to the AuthKey.
- OAuthSettingsLocation: Set this to persist the encrypted OAuth authentication values to the specified file.
- InitiateOAuth: Set this to REFRESH.
After the OAuth settings file is generated, set the following properties to connect to data:
- OAuthClientId: Set this to the Client Key obtained.
- OAuthClientSecret: Set this to the Secret Key obtained.
- OAuthSettingsLocation: Set this to the file containing the encrypted OAuth authentication values. Make sure this file gives read and write permissions to the provider.
- InitiateOAuth: Set this to REFRESH.
Transfer OAuth Settings
Follow the steps below to install the driver on another machine, authenticate, and then transfer the resulting OAuth values.
On a second machine, install the driver and connect with the following properties set:
- OAuthSettingsLocation: Set this to a writable text file.
- InitiateOAuth: Set this to GETANDREFRESH.
- OAuthClientId: Set this to the Client Key obtained.
- OAuthClientSecret: Set this to the Secret Key obtained.
- CallbackURL: Set this to the endpoint you would like Trello to return information to ex. a localhost callback such as http://localhost:33333.
Test the connection to authenticate. The resulting authentication values are written, encrypted, to the path specified by OAuthSettingsLocation. Once you have successfully tested the connection, copy the OAuth settings file to your headless machine. On the headless machine, set the following connection properties to connect to data:
- InitiateOAuth: Set this to REFRESH.
- OAuthClientId: Set this to the Client Key obtained.
- OAuthClientSecret: Set this to the Secret Key obtained.
- OAuthSettingsLocation: Set this to the path to your OAuth settings file. Make sure this file gives read and write permissions to the driver.