A new website tool that searches social media for hashtags, and tracks chat interaction on several live streaming services
When some content is selected on the waterfall display, we have an overlay available that can be used with a video capture device
We have completed an initial minimum viable product and stress tested the application by capturing tweets during the NFL kickoff grame on September 7, 2023 between Kansas City and Detroit using the hashtag #DETvsKC
Data is stored in a combination of Sqlite and Postgres databases. We have configured an extensive provider model so that we can add new social media services in the future.
Live chat integration (TwitchChat, YouTubeChat, etc) captures all messages that are delivered over that service.
We also have a simple moderation capability.
On the moderation screen, you can use the keyboard to navigate the cards on screen:
- arrows to move a cursor between the various messages
- Enter to select a message for moderation
- Y to approve a message
- N to reject a message
- Blazot
- Bluesky
- Mastodon
- Twitter / X
- TwitchChat
- YouTube (search for videos that have a given hashtag in the description)
- YouTube Live Chat
- Custom message delivery across Azure Queues, labeled as 'Website'
The MessageClient class, provided by the TagzApp.Lib.AzureQueue package, enables seamless integration of your application or website with TagzApp by leveraging Azure Storage Queues. This allows you to send messages that will appear on TagzApp in real-time. Ensure that the TagzApp.Lib.AzureQueue package is installed in your project before proceeding.
-
Set Up Azure Queue:
- Create an Azure Storage account if you don't already have one.
- Create a queue in the Azure Storage account.
- Note down the connection string and queue name.
-
Integrate MessageClient in Your Application:
- Add a reference to the
TagzApp.Lib.AzureQueuelibrary in your project. - Use the
MessageClientclass to send messages to the Azure Queue.
- Add a reference to the
-
Code Example:
using TagzApp.Lib.AzureQueue; // Initialize the MessageClient with your Azure Storage connection string and queue name var messageClient = new MessageClient("<YourConnectionString>", "<YourQueueName>"); // Submit a message to the queue await messageClient.SubmitMessage("Hello, TagzApp!", "AuthorName");
-
Run Your Application:
- Ensure your application has network access to the Azure Storage account.
- Messages sent using the
MessageClientwill appear on TagzApp with a globe icon for the provider.
The application has been updated to work with .NET Aspire and will start with a Postgres container and support for Mastodon. With the .NET CLI installed, you can start the application using:
dotnet run --project src/AppHostIf you have the Aspire CLI installed, you can run a local instance with:
aspire run

