skip to Main Content

Azure – SCIM / Entra ID Provisioning: How to remove user attributes in the target system?

GET Users/{Id} returns the following json: { "schemas": [ "urn:ietf:params:scim:schemas:core:2.0:User" ], "id": "16960d38-728d-4865-925c-165caf50708d", "externalId": "16960d38-728d-4865-925c-165caf50708d", "userName": "[email protected]", "name": { "givenName": "", "familyName": "Foo" }, "active": true } When I change the value of the "familyName" or "givenName" attribute in MS…

VIEW QUESTION

Azure openai error 401, "Unauthorized. Access token is missing, invalid, audience is incorrect (https://cognitiveservices.azure.com), or have expired

Here is my python code, and encountered run time error, Error: 401 { "statusCode": 401, "message": "Unauthorized. Access token is missing, invalid, audience is incorrect (https://cognitiveservices.azure.com), or have expired." } import requests # Azure OpenAI Configuration API_KEY = "xxxxxx" #…

VIEW QUESTION

Azure – Request failed with status 400 – MSAL-NODE while calling networkClient.sendPostRequestAsync(tokenEndpoint, options)

I have implemented Azure authentiation in web API created in angular 10 application. While authenticating using URL "https://login.microsoftonline.com/" I am getting Request failed with status 400 inside MSAL-NODE while calling networkClient.sendPostRequestAsync(tokenEndpoint, options). Here is detailed error I am getting and…

VIEW QUESTION

Unable to run Azure Function from portal

When I run the Azure Function from the portal, I get this error: {"message": "Failed to fetch", "stack": "TypeError: Failed to fetch at https://portal.azure.com/Content/Dynamic/BeUd4hejqUig.js:113:24094", "isError":true} Please help me resolve it. My code is: package JWS; import java.util.*; import com.microsoft.azure.functions.annotation.*; import…

VIEW QUESTION
Back To Top
Search