Small helper library for Alexa.NET based skills to access the customer and person profile APIs
using Alexa.NET.Response
var response = ResponseBuilder.TellWithAskForPermissionConsentCard(
"sorry, but you have to give me consent",
new[]{
CustomerProfilePermissions.FullName,
CustomerProfilePermissions.Email
}
);
using Alexa.NET.Profile
var client = new CustomProfileClient(skillRequest);
var fullName = await client.FullName();
var email = await client.Email();
using Alexa.NET.Profile
var client = new PersonProfileClient(skillRequest);
var fullName = await client.FullName();