joshbalfour / node-cognitive-services

Microsoft® Cognitive Services SDK for Node.JS
https://www.microsoft.com/cognitive-services
MIT License
105 stars 45 forks source link

Endpoint is not supported #45

Closed HybridFox closed 6 years ago

HybridFox commented 6 years ago

Expected Behavior

Return results

Actual Behavior

Endpoint https://westcentralus.api.cognitive.microsoft.com/vision/v1.0 is not supported.

Relevant Code

const compVis = new cognitiveServices.computerVision({
    apiKey: 'xxx',
    endpoint: 'https://westcentralus.api.cognitive.microsoft.com/vision/v1.0'
});

Specifications

miparnisari commented 6 years ago

Please change

    endpoint: 'https://westcentralus.api.cognitive.microsoft.com/vision/v1.0'

to

    endpoint: 'https://westcentralus.api.cognitive.microsoft.com'
HybridFox commented 6 years ago

Thank you!