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
Back To Top
Search