Luis Eduardo Vivar
Luis Eduardo Vivar

Reputation: 71

API Key for Azure Machine Learning Endpoint

I am using Azure ML, I made my models and now I want to connect them to Data Factory to run some process.

I implement an endpoint, but I can't find the API key for the endpoints. Right now, I have the REST endpoint, but not in key-based authentication enabled, it's false. Do you know how to generate the API key?

Upvotes: 2

Views: 1787

Answers (1)

Abhishek Khandave
Abhishek Khandave

Reputation: 3240

Currently the only way to retrieve the token is by using the Azure Machine Learning SDK or the Azure CLI machine learning extension.

enter image description here

Key-based auth is supported for Azure Container Instance and Azure Kubernetes Service deployed web-services, and token-based auth is only available for Azure Kubernetes Service deployments.

You can find more information here

Upvotes: 0

Related Questions