MonkeyShell.Microsoft.Azure.WebJobs.Extensions.Twitter
1.1.0
dotnet add package MonkeyShell.Microsoft.Azure.WebJobs.Extensions.Twitter --version 1.1.0
NuGet\Install-Package MonkeyShell.Microsoft.Azure.WebJobs.Extensions.Twitter -Version 1.1.0
<PackageReference Include="MonkeyShell.Microsoft.Azure.WebJobs.Extensions.Twitter" Version="1.1.0" />
paket add MonkeyShell.Microsoft.Azure.WebJobs.Extensions.Twitter --version 1.1.0
#r "nuget: MonkeyShell.Microsoft.Azure.WebJobs.Extensions.Twitter, 1.1.0"
// Install MonkeyShell.Microsoft.Azure.WebJobs.Extensions.Twitter as a Cake Addin #addin nuget:?package=MonkeyShell.Microsoft.Azure.WebJobs.Extensions.Twitter&version=1.1.0 // Install MonkeyShell.Microsoft.Azure.WebJobs.Extensions.Twitter as a Cake Tool #tool nuget:?package=MonkeyShell.Microsoft.Azure.WebJobs.Extensions.Twitter&version=1.1.0
Azure Function Twitter Trigger Extension
This repo contains a twitter based binding extension for <b>Azure WebJobs SDK</b> built on top of Tweetinvi and using the Twitter Stream API. Addittionally a simple sample <b>Azure Function</b> project demos how to use the trigger.
Note: I am still actively working on the features of what is here. Please provide feedback and open issues as you find them. I will happilly accept pull requests.
Configuration
In order to use this trigger you will need to sign up for a Twitter Developer Account and obtain your Consumer keys and generate Access keys. You then need to update your local.settings.json to contain the following:
"TwitterConsumerKey": "<API key>",
"TwitterConsumerSecret": "<API secret key>",
"TwitterAccessKey": "<Access token>",
"TwitterAccessSecret": "<Access token secret>"
TwitterTrigger
// Runs when a tweet containing the word "azure" is detected
public static async Task Run([TwitterTrigger("azure")]MatchedTweetReceivedEventArgs tweetEvent, ILogger log)
{
log.LogInformation($"\n@{tweetEvent.Tweet.CreatedBy.ScreenName}[{tweetEvent.Tweet.CreatedBy.Name}]\n" +
$"Tweeted: {tweetEvent.Tweet.FullText}\n" +
$"HashTags: [{String.Join(",", tweetEvent.Tweet.Hashtags.Select(x => $"#{x.Text}"))}]");
}
// Runs when a tweet containing the hashtag "#azure" is detected
public static async Task Run([TwitterTrigger("#azure")]MatchedTweetReceivedEventArgs tweetEvent, ILogger log)
{
log.LogInformation($"\n@{tweetEvent.Tweet.CreatedBy.ScreenName}[{tweetEvent.Tweet.CreatedBy.Name}]\n" +
$"Tweeted: {tweetEvent.Tweet.FullText}\n" +
$"HashTags: [{String.Join(",", tweetEvent.Tweet.Hashtags.Select(x => $"#{x.Text}"))}]");
}
// Runs when a tweet by @introtocs is detected
public static async Task Run([TwitterTrigger(user: "introtocs")]MatchedTweetReceivedEventArgs tweetEvent, ILogger log)
{
log.LogInformation($"\n@{tweetEvent.Tweet.CreatedBy.ScreenName}[{tweetEvent.Tweet.CreatedBy.Name}]\n" +
$"Tweeted: {tweetEvent.Tweet.FullText}\n" +
$"HashTags: [{String.Join(",", tweetEvent.Tweet.Hashtags.Select(x => $"#{x.Text}"))}]");
}
// Runs when a tweet by @introtocs is detected containing the hashtag "#azure"
public static async Task Run([TwitterTrigger("#azure", "introtocs")]MatchedTweetReceivedEventArgs tweetEvent, ILogger log)
{
log.LogInformation($"\n@{tweetEvent.Tweet.CreatedBy.ScreenName}[{tweetEvent.Tweet.CreatedBy.Name}]\n" +
$"Tweeted: {tweetEvent.Tweet.FullText}\n" +
$"HashTags: [{String.Join(",", tweetEvent.Tweet.Hashtags.Select(x => $"#{x.Text}"))}]");
}
License
This project is licensed under the MIT License
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
- TweetinviAPI (>= 5.0.3)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Upgraded libraries to continue working with Twitter API