Alexa.NET.CustomerProfile
2.1.1
CustomerProfile has now become part of the Alexa.NET.Profile package, which also includes the Person Profile API
Install-Package Alexa.NET.CustomerProfile -Version 2.1.1
dotnet add package Alexa.NET.CustomerProfile --version 2.1.1
<PackageReference Include="Alexa.NET.CustomerProfile" Version="2.1.1" />
paket add Alexa.NET.CustomerProfile --version 2.1.1
#r "nuget: Alexa.NET.CustomerProfile, 2.1.1"
// Install Alexa.NET.CustomerProfile as a Cake Addin
#addin nuget:?package=Alexa.NET.CustomerProfile&version=2.1.1
// Install Alexa.NET.CustomerProfile as a Cake Tool
#tool nuget:?package=Alexa.NET.CustomerProfile&version=2.1.1
Alexa.NET.CustomerProfile
Small helper library for Alexa.NET based skills to access the customer contact API
Asking your user for consent to get customer information
using Alexa.NET.Response
var response = ResponseBuilder.TellWithAskForPermissionConsentCard(
"sorry, but you have to give me consent",
new[]{
CustomerProfilePermissions.FullName,
CustomerProfilePermissions.Email
}
);
Getting customer profile information
using Alexa.NET.Response
var client = new CustomProfileClient(skillRequest);
var fullName = await client.FullName();
var email = await client.Email();
Product | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows |
.NET Core | netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1 |
.NET Standard | netstandard2.0 netstandard2.1 |
.NET Framework | net461 net462 net463 net47 net471 net472 net48 |
MonoAndroid | monoandroid |
MonoMac | monomac |
MonoTouch | monotouch |
Tizen | tizen40 tizen60 |
Xamarin.iOS | xamarinios |
Xamarin.Mac | xamarinmac |
Xamarin.TVOS | xamarintvos |
Xamarin.WatchOS | xamarinwatchos |
-
.NETStandard 2.0
- Alexa.NET (>= 1.8.0)
- Newtonsoft.Json (>= 12.0.2)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Alexa.NET.CustomerProfile:
Package | Downloads |
---|---|
Bot.Builder.Community.Adapters.Alexa.Core
Core package containing Attachment types and turn context extensions for when using Bot Builder .NET Alexa Adapter to allow for a bot to be used for Alexa skills. |
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on Alexa.NET.CustomerProfile:
Repository | Stars |
---|---|
BotBuilderCommunity/botbuilder-community-dotnet
Part of the Bot Builder Community Project. Repository for extensions for the Bot Builder .NET SDK, including middleware, dialogs, recognizers and more.
|
Correct issue with permission format on address and postal code (thanks daledev-uk)