Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

An Alexa Skill web API and Library developed live on-stream. Publically available as a Nuget package.

License

NotificationsYou must be signed in to change notification settings

essenbee/Essenbee.Alexa

Repository files navigation

Build statusTestsReleaseBuild status

Twitter

We are building an Alexa Skill live on-stream atCodebase Alpha on Twitch. The skill, calledDevStreams, is the voice interface for theDevStreams community website that is being developed on theDevChatter Twitch stream by Brendan Enrick and contributors. A fork of that repo can be found in this Github. Integration has been achieved through the introduction of a GraphQL endpoint into the DevStreams solution (also developed on-stream at Codebase Alpha). TheEssenbee.Alexa code uses this endpoint to query DevStreams and thus provide users with the information about live coding streams that they have requested.

The primary reusable component created in this project is theEssenbee.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 YouTubehere.

Installation

nugetDownloads

Install theEssenbee.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, seehere
  • AlexaRequest andAlexaResponse classes for speech, cards and dialogs, but not yet for AudioPlayer requests at this time
  • A fluentResponseBuilder 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 theStartup.cs class, add the following code to theConfigure method:

app.UseWhen(context => context.Request.Path.StartsWithSegments("/api/alexa"), (appBuilder) =>{    appBuilder.UseAlexaRequestValidation();});

To use the strongly-typed HTTP client, add this line to yourConfigureServices method:

services.AddHttpClient<IAlexaClient, AlexaClient>();

Make sure that you store your Alexa Skill Application ID (securely) in yourConfiguration. In the example code, it is held inConfiguration["SkillId"]. This is needed for theAlexaRequestShouldProcessRequest()` static method call shown below. It is this method that, alongside the custom Middleware, ensures that your Skill staisfies Amazon's security requirements.

Create anAlexaController 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 theResponseBuilder 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 theEssenbee.Alexa.Lib library, head over to my Discordhere. Why not join me for some live coding on Twitch? We work on a variety of projects, not just Alexa skills.

Releases

No releases published

Packages

No packages published

[8]ページ先頭

©2009-2025 Movatter.jp