![]() |
VOOZH | about |
The CData Excel Add-In for Discourse provides formulas that can query Discourse data. The following three steps show how you can automate the following task: Search Discourse data for a user-specified value and then organize the results into an Excel spreadsheet.
The syntax of the CDATAQUERY formula is the following:
=CDATAQUERY(Query, [Connection], [Parameters], [ResultLocation]);
This formula requires three inputs:
Connection: Either the connection name, such as APIConnection1, or a connection string. The connection string consists of the required properties for connecting to Discourse data, separated by semicolons.
The Discourse API uses API Key authentication.
Discourse requires API Key and Username for authentication. API Keys are generated in the Discourse Admin panel under the API section. You can create user-specific API keys or all-users API keys. Once you have obtained the API Key, set it along with the Domain and Username in the ProfileSettings connection property.
Profile=C:\profiles\Discourse.apip;ProfileSettings='Domain=forum.example.com;APIKey=your_api_key;Username=your_username;'AuthScheme=APIKey;
The procedure below results in a spreadsheet that organizes all the formula inputs in the first column.
=CDATAQUERY("SELECT * FROM Backups WHERE = '"&B7&"'","Profile="&B1&";ProfileSettings="&B2&";APIKey="&B3&";Username="&B4&";'AuthScheme="&B5&";Provider=API",B8)
👁 Formula inputs used in this example. (Google Apps is shown.)Connect to live data from Discourse with the API Driver
Connect to Discourse