Merge pull request #26 from Microsoft/fix-functioncogsendpoint

Fix the Cognitive Services endpoint in the Azure Functions
This commit is contained in:
Robin-Manuel Thiel 2018-11-15 07:16:51 +01:00 коммит произвёл GitHub
Родитель 27d9f552e0 394655ff8a
Коммит fca8014874
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -64,7 +64,7 @@ namespace ContosoMaintenance.Functions
httpClient.DefaultRequestHeaders.Add("Ocp-Apim-Subscription-Key", Environment.GetEnvironmentVariable("CognitiveServicesKey"));
// Create Cognitive Service request url with parameters
var url = $"{Environment.GetEnvironmentVariable("CognitiveServicesEndpoint")}/generateThumbnail?width={width}&height={height}&smartCropping=true";
var url = $"{Environment.GetEnvironmentVariable("CognitiveServicesEndpoint")}vision/v1.0/generateThumbnail?width={width}&height={height}&smartCropping=true";
using (ByteArrayContent content = new ByteArrayContent(inputImage))
{