A family of Microsoft word processing software products for creating web, email, and print documents.
To enable add-ins from the Office Store when using WOPI, you need to ensure that the appropriate configurations are in place. Here are some steps and considerations:
- Check WOPI Host Configuration: Ensure that your WOPI host is configured to allow add-ins. This includes verifying that the
HostAllowedOfficeStoreproperty is set correctly. While documentation on this property is limited, it is crucial for enabling Office Store add-ins. - App_IsFrameTrusted: Since you mentioned implementing
App_IsFrameTrusted, ensure that it is correctly set up and that your add-in is trusted to run in an iframe. This is necessary for the add-in to function properly within the WOPI context. - GetFileInfo Endpoint: While you have implemented the
GetFileInfoendpoint, ensure that it includes all necessary properties that might affect add-in permissions. If there are any additional properties related to add-in permissions, they should be included in the response. - Security Settings: Verify that the security settings in your environment do not block add-ins from being installed. This may involve checking firewall settings or other security configurations that could prevent access to the Office Store.
- Trusted Sites: Make sure that the domains associated with your add-ins are added to the list of trusted sites in your browser settings, as this can affect the ability to load add-ins from the Office Store.
If you continue to face issues, consider reaching out to Microsoft support for more specific guidance related to your WOPI integration and add-in configurations.
References: