Trending
Study links sugar-sweetened beverages, fruit juice consumption to high blood pressure is trending now The Silent Pandemic Killing 3 People Every Minute is trending now Lassa fever: 237 dead as fatality rate rises to 23.7% is trending now Black holes older than the Big Bang could explain dark matter is trending now Sudan: Heavy Meteor Showers to Appear in the Atmosphere Tuesday Evening for Three Days is trending now Carabao Cup second-round draw: Chelsea vs Luton, Tottenham vs Charlton, Newcastle vs West… is trending now Donald Trump says replacing Gianni Infantino would be a ‘terrible mistake’ is trending now 'Enjoy it' - Ronald Araujo reveals Luis Suarez’s advice after joining Liverpool on loan is trending now Despite defeat to Cameroon, World Cup remains our target - Super Falcons' Christy Ucheibe is trending now BBNaija S11: 16 housemates up for possible eviction in week three is trending now From tears to thanksgiving, Actress Mo Bimpe celebrates triplets ahead of grand thanksgiv… is trending now Apply Now: Jonathan Larson Grant Program (US) is trending now Study links sugar-sweetened beverages, fruit juice consumption to high blood pressure is trending now The Silent Pandemic Killing 3 People Every Minute is trending now Lassa fever: 237 dead as fatality rate rises to 23.7% is trending now Black holes older than the Big Bang could explain dark matter is trending now Sudan: Heavy Meteor Showers to Appear in the Atmosphere Tuesday Evening for Three Days is trending now Carabao Cup second-round draw: Chelsea vs Luton, Tottenham vs Charlton, Newcastle vs West… is trending now Donald Trump says replacing Gianni Infantino would be a ‘terrible mistake’ is trending now 'Enjoy it' - Ronald Araujo reveals Luis Suarez’s advice after joining Liverpool on loan is trending now Despite defeat to Cameroon, World Cup remains our target - Super Falcons' Christy Ucheibe is trending now BBNaija S11: 16 housemates up for possible eviction in week three is trending now From tears to thanksgiving, Actress Mo Bimpe celebrates triplets ahead of grand thanksgiv… is trending now Apply Now: Jonathan Larson Grant Program (US) is trending now
Organic

Entra ID Multi Tenant App custom scope approval PowerShell script

 $myApiSp = Get-MgServicePrincipal -Filter "displayName eq 'MultitenantApplication'" # Or by AppId if displayName is not unique or known # $myApiSp = Get-MgServicePrincipal -Filter "appId eq 'your-my-api-app-id'"if (-not $myApiSp) {     Write-Error "Could not find Service Principal for 'My API Application Name'. Ensure it's correctly registered."     return }$externalAppSp = Get-MgServicePrincipal -Filter "displayName eq 'MultitenantApplication'" # Or by AppId # $externalAppSp = Get-MgServicePrincipal -Filter "appId eq 'external-multi-tenant-app-id'"if (-not $externalAppSp) {     Write-Error "Could not find Service Principal for 'External Multi-Tenant App Name'. Ensure it has been consented to in your tenant."     return}# Get the App Roles (Application Permissions) exposed by My API $myApiSp.AppRoles | Format-Table Id, DisplayName, Value, IsEnabled# Pick the 'Id' of the specific scope you want to grant, e.g., for 'MyAPI.ReadData' # For App Role (Application Permission) $appRoleIdToGrant = ($myApiSp.AppRoles | Where-Object Value -eq "MyAPI.ReadData").Id$params = @{     "principalId" = $externalAppSp.Id     "resourceId"  = $myApiSp.Id     "appRoleId"   = $appRoleIdToGrant # The ID of the app role you want to grant } New-MgServicePrincipalAppRoleAssignment -ServicePrincipalId $externalAppSp.Id -BodyParameter $params Write-Host "Application permission granted for $($externalAppSp.DisplayName) to $($myApiSp.DisplayName) app role $($appRoleIdToGrant)."

View original source →

Related