Where to find my Ocp-Apim-Subscription-Key in Windows azure

后端 未结 8 1656
时光说笑
时光说笑 2021-01-01 16:32

I want to use an api, but i can\'t find the Ocp-Apim-Subscription-Key at the page below:

Thanks.

相关标签:
8条回答
  • 2021-01-01 17:13

    I found the subscription key here:

    1. In the Azure portal, navigate to the "API Management service".
    2. Go to "Subscriptions" under the "APIs"-heading.
    3. Press "Add subscription".
    4. Enter a "Name", select API as "Scope" then select your API under "API".
    5. Press "Save". This will create a subscription for the selected API.
    6. In the list of subscriptions, locate the subscription you just created, then press the "..."-button to the far right.
    7. Press "Show/hide keys".
    8. The subscription key is visible and can be copied from the "Primary key"-field.
    0 讨论(0)
  • 2021-01-01 17:17

    You can find it by going to API Management services, then APIs. Select your API, your endpoint and then select the Test tab on the right hand side. Go down to Headers and against Ocp-Apim-Subscription-Key you will see it hidden; select the eye to see it.

    0 讨论(0)
  • 2021-01-01 17:18

    Not sure where everyone is getting their answers from...
    Maybe it's just old information, but at this time you can find them by doing the following:

    1. Go to portal.azure.com
    2. Select "Create a resource"
    3. Create a resource. I'm using computer vision so I search for that and hit enter
    4. Select "create"
    5. Go to the newly created resource
    6. On the left side panel under the "Resource Management" section select "Keys and Endpoint"

    Key 1 and Key 2 are used as the "Ocp-Apim-Subscription-Key".
    That's it. Those should work for you wherever it asks for the "Ocp-Apim-Subscription-Key".

    0 讨论(0)
  • 2021-01-01 17:19

    Method 1: From https://portal.azure.com/ go to your API Management service -> Subscriptions There will find default ones and some created by your own.

    Method 2: Via https://resources.azure.com/ using HTTP GET method

    az rest --method get `
    --uri 'https://management.azure.com/subscriptions/{SUBSCRIPTION_ID}/resourceGroups/{RESOURCE_GROUP_NAME}/providers/Microsoft.ApiManagement/service/{API_MANAGER_NAME}/subscriptions?api-version=2018-01-01' `
    --query "value[0].properties.primaryKey" | ConvertFrom-Json
    

    Explanation:

    • Replace placeholders {SUBSCRIPTION_ID},{API_MANAGER_NAME},{RESOURCE_GROUP_NAME} by your own values
    • "value[0]. -> indicates the required key value: first,second in the list, because as you can see in the portal there are multiple for different scopes: Starter, Service access, Unlimited etc.
    • properties.primaryKey -> each value has 2 defined keys: primaryKey and secondaryKey
    • api-version=2018-01-01 -> check the right version, can be found from https://resources.azure.com/ or from ARM template for the API Manager resource
    0 讨论(0)
  • 2021-01-01 17:20

    (August 2018) For our purposes (AI / ML) I found it under Cognitive Services > Resource Management > Keys - https://portal.azure.com/#blade/HubsExtension/Resources/resourceType/Microsoft.CognitiveServices%2Faccounts

    It will be under other services though I can't say which (as you have to be using one to see the attributes of it).

    0 讨论(0)
  • 2021-01-01 17:21

    please, following the instructions below.

    1. You have to go through the azure portal and select your API management component then click on the Publisher Portal in the left top corner.
    2. Go through the APIs and then Products tab.
    3. Click on the ADD API TO PRODUCTS button and then select an appropriate option.
    4. Go through the azure portal again, but click on the Developer Portal in the left top corner.
    5. Click on the ComboBox which is placed on the right side and choose Profile.
    6. You will be able to see the access keys for the products and pick the key for the product which you have chosen in the previous steps (Starter or Unlimited).
    0 讨论(0)
提交回复
热议问题