Trending
Crimean-Congo Fever On Increase In Afghanistan, 21 Deaths In June-WHO is trending now James Webb Space Telescope discovers the secrets of cosmic 'factories' that filled the ea… is trending now NASA's Psyche Spacecraft Captured a Time-Lapse Video of its Mars Flyby is trending now SpaceX launches satellite repair drone with 10-foot robotic arms to Earth orbit (video) is trending now 3.5-Million-Year-Old Fossil from Japan Reveals Lost Lineage of Giant Salamanders is trending now FC Barcelona Signs 18-Year-Old Belgian Gem Jesse Bisiwu is trending now Enzo Fernandez releases emotional statement after red card in Argentina's World Cup final… is trending now FIFA ‘destroying football’ for the World Cup, says Spanish football chief is trending now Second most expensive deal in the Premier League.. Chelsea officially announce Rogers sig… is trending now Bruno Mars’s Decade-Old Single Becomes A Multi-Chart Bestseller Again is trending now Burna Boy Cements Global Legacy As Africa’s Best-Selling Artiste is trending now Cardi B, Maduka Okoye spark fresh dating rumours after Venice dinner is trending now Crimean-Congo Fever On Increase In Afghanistan, 21 Deaths In June-WHO is trending now James Webb Space Telescope discovers the secrets of cosmic 'factories' that filled the ea… is trending now NASA's Psyche Spacecraft Captured a Time-Lapse Video of its Mars Flyby is trending now SpaceX launches satellite repair drone with 10-foot robotic arms to Earth orbit (video) is trending now 3.5-Million-Year-Old Fossil from Japan Reveals Lost Lineage of Giant Salamanders is trending now FC Barcelona Signs 18-Year-Old Belgian Gem Jesse Bisiwu is trending now Enzo Fernandez releases emotional statement after red card in Argentina's World Cup final… is trending now FIFA ‘destroying football’ for the World Cup, says Spanish football chief is trending now Second most expensive deal in the Premier League.. Chelsea officially announce Rogers sig… is trending now Bruno Mars’s Decade-Old Single Becomes A Multi-Chart Bestseller Again is trending now Burna Boy Cements Global Legacy As Africa’s Best-Selling Artiste is trending now Cardi B, Maduka Okoye spark fresh dating rumours after Venice dinner 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