Automate Trello Integration Tasks from PowerShell
The CData ADO.NET Provider for Trello is a standard ADO.NET Provider that make it easy to accomplish data cleansing, normalization, backup, and other integration tasks by enabling real-time access to Trello.
ADO.NET Provider
The ADO.NET Provider provides a SQL interface for Trello; this tutorial shows how to use the Provider to retrieve Trello data.
Once you have acquired the necessary connection properties, accessing Trello data in PowerShell can be enabled in three steps.
Trello uses token-based authentication to grant third-party applications access to their API. When a user has granted an application access to their data, the application is given a token that can be used to make requests to Trello's API.
Trello's API can be accessed in 2 different ways. The first is using Trello's own Authorization Route, and the second is using OAuth1.0.
- Authorization Route: At the moment of registration, Trello assigns an API key and Token to the account. See the Help documentation for information on how to connect via the Authorization route.
- OAuth Route: Similar to using Authorization, OAuth creates an Application Id and Secret when you create your account. See the Help documentation for information on how to to connect.
-
Load the provider's assembly:
[Reflection.Assembly]::LoadFile("C:\Program Files\CData\CData ADO.NET Provider for Trello\lib\System.Data.CData.Trello.dll") -
Connect to Trello:
$conn= New-Object System.Data.CData.Trello.TrelloConnection("APIKey=myApiKey;Token=myGeneratedToken;InitiateOAuth=GETANDREFRESH;") $conn.Open() -
Instantiate the TrelloDataAdapter, execute an SQL query, and output the results:
$sql="SELECT BoardId, Name from Boards" $da= New-Object System.Data.CData.Trello.TrelloDataAdapter($sql, $conn) $dt= New-Object System.Data.DataTable $da.Fill($dt) $dt.Rows | foreach { Write-Host $_.boardid $_.name }