Azure Computer Vision Resource not found when called using the SDK or accessed via the browser.

I created an Azure Computer Vision resource to explore its features. I'll be using it inside a mobile app and make use of the ImageAnalysis SDK: https://www.nuget.org/packages/Azure.AI.Vision.ImageAnalysis/1.0.0-beta.3.
After I created the resource, I noticed the SDK throws me an error saying: "(hostname nor servname provided, or not known (<vision-resource-name>.cognitiveservices.azure.com:443))".
I noticed that when I try to access the url directly from the browser it shows a json message:
{
"error": {
"code": "404",
"message": "Resource not found"
}
}
is there anything else that needs to be setup when creating an (Azure) Computer Vision resource?
how can I use it in the ImageAnalysis SDK?