Twitter
Twitter Adapter
This adapter allows you to search tweets and post a tweet directly from SQL Server databases and through REST calls.
This adapter requires registering a developer account with the Twitter service
Want to try it in Azure?
Click here to learn more or
click here to create a new Enzo Server RTM 3.1 Azure VM now.
Want to try it in AWS?
Click here to learn more or
click here to create a new Enzo Server RTM 3.1 AWS VM now.
Configuration Settings
Name | Description | Default |
---|---|---|
Boolean _isDefault | Make this the default configuration. Defaults to true if configName is already the default. | |
String accessToken | Your Access Token | |
String accessTokenSecret | Your Access Token Secret | |
String apiSecret | Your API Secret | |
String apiKey | Your API key |
Handlers
GetFields |
List available columns for the specified resource
details
Arguments
SQL CallSELECT * FROM twitter.GetFields WHERE resourceName='timeline' Http Call/bsc/twitter/getfields Output Columns
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
mentions |
Retrieves recent mentions of the current twitter account
details
Arguments
SQL CallSELECT * FROM twitter.mentions WHERE count = 25 Http Call/bsc/twitter/mentions Output Columns
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
postStatus |
Posts a twitter status to the timeline
details
Arguments
SQL CallEXEC twitter.PostStatus 'this is a tweet' Http Call/bsc/twitter/poststatus Output Columns
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Resources |
List the objects that support Virtual Tables
details
ArgumentsSQL CallSELECT Name FROM twitter.Resources Http Call/bsc/twitter/resources Output Columns
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
search |
Ad-hoc search for tweets given a search criteria
details
Arguments
SQL Callexec twitter.search 'nasdaq', 10 Http Call/bsc/twitter/search Output Columns
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
timeline |
Ad-hoc search for tweets given a search criteria using a SELECT statement
details
Arguments
SQL CallSELECT TOP 10 FROM twitter.timeline WHERE filter = 'nasdaq' Http Call/bsc/twitter/timeline Output Columns
|