hi guys
i'm used Emotion API package of nuget in my project and calling the API code as bellow:
Emotion[] emotionResult;
EmotionServiceClient emotionClient = new EmotionServiceClient(Constants.EmotionApiKey);
using (var photoStream = photo.GetStream())
{
emotionResult = await emotionClient.RecognizeAsync(photoStream);
if (emotionResult.Any())
{}
}
but , got exception when BOLD CODE is executed .

so , anybody else known why and how to solve it ?
Thanks so much .