Hello
I've been configuring server-based authentication with MSCRM (on-premises) and SharePoint on-premises.
While running the below commands for granting permission on the specific site collection, the site app permission is not generated
$app = Get-SPAppPrincipal -NameIdentifier $Identifier -Site $site.Rootweb Set-SPAppPrincipalPermission -AppPrincipal $app -Site $site.Rootweb -Scope "sitecollection" -Right "FullControl" -EnableAppOnlyPolicy #"Set up claims-based authentication mapping" New-SPClaimTypeMapping -IncomingClaimType "schemas.xmlsoap.org/.../emailaddress" -IncomingClaimTypeDisplayName "EmailAddress" -SameAsIncoming
After running the commands in the SharePoint navigated to Site Settings -> Site App Permissions and no site permission is created
Can someone please help? Am I missing any steps?
*This post is locked for comments