Essenbee.Alexa.Lib
0.2.5
See the version list below for details.
dotnet add package Essenbee.Alexa.Lib --version 0.2.5
NuGet\Install-Package Essenbee.Alexa.Lib -Version 0.2.5
<PackageReference Include="Essenbee.Alexa.Lib" Version="0.2.5" />
paket add Essenbee.Alexa.Lib --version 0.2.5
#r "nuget: Essenbee.Alexa.Lib, 0.2.5"
// Install Essenbee.Alexa.Lib as a Cake Addin #addin nuget:?package=Essenbee.Alexa.Lib&version=0.2.5 // Install Essenbee.Alexa.Lib as a Cake Tool #tool nuget:?package=Essenbee.Alexa.Lib&version=0.2.5
Essenbee.Alexa and Essenbee.Alexa.Lib
We are building an Alexa Skill live on-stream at Codebase Alpha on Twitch. The skill, called DevStreams, is going to be the voice interface for the DevStreams community website that is being developed on the DevChatter Twitch stream by Brendan Enrick. The fork of that repo can be found in this Github, so you can see how that integration is going by looking at that.
The primary reusable component created in this project is the Essenbee.Alexa.Lib
NuGet package. Please see below for installation and usage instructions.
YouTube
The main phase of development for this code is encompassed by Episodes 4 - 11 of Codebase Alpha. The videos for these episodes are archived on YouTube here.
Installation
Install the Essenbee.Alexa.Lib
NET Standard 2.0 library into your own ASP.NET Core (2.2+) Web App or Web API via Nuget with the command:
dotnet add package Essenbee.Alexa.Lib
Current Features
The library contains the following features at this stage:
- Middleware and methods to satisfy Amazon's security requirements for Skills, see here
-
AlexaRequest
andAlexaResponse
classes for speech, cards and dialogs, but not yet for AudioPlayer requests at this time - A fluent
ResponseBuilder
that makes creating responses easy - A strongly-typed HTTP client (
AlexaClient
) that you can use to access Device Settings or User Address details (with the user's permission)
Further features will be added over time, with the intent being to provide library support for all of the features that Alexa skills can exploit. However, that takes time, especially doing the work live on Twitch, so please check back here often to see what is new.
Using the Library
Install the latest NuGet package into your project. In the Startup.cs
class, add the following code to the Configure
method:
app.UseWhen(context => context.Request.Path.StartsWithSegments("/api/alexa"), (appBuilder) =>
{
appBuilder.UseAlexaRequestValidation();
});
To use the strongly-typed HTTP client, add this line to your ConfigureServices
method:
services.AddHttpClient<IAlexaClient, AlexaClient>();
Make sure that you store your Alexa Skill Application ID (securely) in your Configuration
. In the example code, it is held in Configuration["SkillId"]
. This is needed for the AlexaRequest
ShouldProcessRequest()` static method call shown below. It is this method that, alongside the custom Middleware, ensures that your Skill staisfies Amazon's security requirements.
Create an AlexaController
using the example below as a starting point:
[ApiController]
[Produces("application/json")]
public class AlexaController : ControllerBase
{
private IConfiguration _config;
private ILogger<AlexaController> _logger;
private readonly IAlexaClient _client;
public AlexaController(IConfiguration config, ILogger<AlexaController> logger, IAlexaClient client)
{
_config = config;
_logger = logger;
_client = client;
}
[HttpPost]
[ProducesResponseType(200, Type = typeof(AlexaResponse))]
[ProducesResponseType(400)]
[Route("api/alexa/your-endpoint")]
public async Task<ActionResult<AlexaResponse>> MySkill ([FromBody] AlexaRequest alexaRequest )
{
if (!AlexaRequest.ShouldProcessRequest(_config["SkillId"], alexaRequest))
{
_logger.LogError("Bad Request - application id did not match or timestamp tolerance exceeded!");
return BadRequest();
}
// Your skill's code here
}
}
You use the ResponseBuilder
like this:
Simple Speech Response
var response = new ResponseBuilder()
.Say("To use this skill, ask me about the schedule of your favourite stream.")
.Build();
Speech Response with Card
var response = new ResponseBuilder()
.Say("Codebase Alpha is streaming now")
.WriteSimpleCard("Streaming Now!", "Codebase Alpha")
.Build();
SSML Speech Response
var ssml = @"<speak>Welcome to my skill</speak>";
var response = new ResponseBuilder()
.SayWithSsml(ssml)
.Build();
Ask Something, Expecting a User to Respond (with Reprompt or Not)
var response = new ResponseBuilder()
.Ask("Try asking me who is streaming now",
"You can ask me who is streaming now")
.Build();
Delegate Dialog to Alexa Manually
var response = new ResponseBuilder()
.DelegateDialog()
.Build();
Discord
If you have any questions, suggestions or bug reports relating to the Essenbee.Alexa.Lib
library, head over to my Discord here. Why not join me for some live coding on Twitch? We work on a variety of projects, not just Alexa skills.
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. |
-
.NETStandard 2.0
- Microsoft.AspNetCore.Http (>= 2.2.2)
- Microsoft.Extensions.Logging.Abstractions (>= 2.2.0)
- Newtonsoft.Json (>= 12.0.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.