skip to Main Content

Azure – What is the use of COBRAND ID in Microsoft OAUTH 2.0?

async function authenticateDevice() { const client_id = ''; const scope = 'offline_access xboxlive.signin xboxlive.offline_access'; const cobrand_id = '8058f65d-ce06-4c30-9559-473c9275a65d'; const data = qs.stringify({ 'client_id': client_id, 'scope': scope, 'cobrandid': cobrand_id }); const config = { method: 'post', url: 'https://login.microsoftonline.com/consumers/oauth2/v2.0/devicecode', headers: { 'Content-Type':…

VIEW QUESTION

Azure – Terraform iterating a json file for key value pairs

I have an appconfig.json file which contains the key value details for the azure app config. sample appConfig.json : [ { "contentType": "", "key": "FuncApp:Ihub:Common:D365Api:JobStatusRelativePath", "tags": { }, "value": "/api/connector/jobstatus" }, { "contentType": "application/vnd.microsoft.appconfig.keyvaultref+json;charset=utf-8", "key": "secretName", "label": null, "tags": {…

VIEW QUESTION

Azure – GPT4-vision OCR enhancements returns error 400

I am testing with the GPT4 OCR Vision (model version: gpt-4 vision preview), use postman send API with OCR enhancement body like the API document claimed "enhancements":{ "ocr":{"enabled":true}, "grounding":{"enabled":true} }, "dataSources":[ { "type":"AzureComputerVision", "parameters":{ "endpoint":"https://xyz.cognitiveservices.azure.com", "key":"xyz" } } ]However, I…

VIEW QUESTION
Back To Top
Search