Hi @johnjohn123 ,
Have you resolved the issue? If not yet, below are the detailed steps:
Share an app with Microsoft 365 groups
You can share an app with Microsoft 365 groups. However, the group must have security enabled. Enabling security ensures that the Microsoft 365 group can receive security tokens for authentication to access apps or resources.
To check whether a Microsoft 365 group has security enabled
-
Ensure that you have access to the Azure AD cmdlets.
-
Go to Azure portal > Azure Active Directory > Groups, select the appropriate group, and then copy the Object Id.
-
Connect to Azure AD by using the Connect-AzureAD PowerShell cmdlet.
-
Get the group details by using Get-AzureADGroup -ObjectId <ObjectID\> | select *.
In the output, ensure that the property SecurityEnabled is set to True.
To enable security for a group
If the group isn't security-enabled, you can use the PowerShell cmdlet Set-AzureADGroup to set the SecurityEnabled property to True:
Set-AzureADGroup -ObjectId <ObjectID> -SecurityEnabled $True
Note
You must be the owner of the Microsoft 365 group to enable security. Setting the SecurityEnabled property to True doesn't affect how Power Apps and Microsoft 365 features work. This command is required because the SecurityEnabled property is set to False by default when Microsoft 365 groups are created outside of Azure AD.
After a few minutes, you can discover this group in the Power Apps sharing panel and share apps with this group.
Share a canvas app with your organization - Power Apps | Microsoft Docs
Hope this helps.
Best regards,
Community Support Team _ Jeffer Ni
If this post helps, then please consider Accept it as the solution to help the other members find it.