Disable Office 365 Outlook Add-in for desktop

喜夏-厌秋 提交于 2019-12-11 07:35:59

问题


I have developed an Office 365 Outlook Add-in for the web. It's automatically supported in desktop also. I want to disable the app only for the desktop. I guess we need to change something in Manifest file but I couldn't get any clue. Can anyone help me to achieve this??


回答1:


The Office add-in is aim to cross-platform developing for the Office solution. At present, it doesn't support to limit platform. Here is the specification of “Host“ element which used to specify the Office host application for your reference:

You can refer to here about more detail of host specifying in the manifest. And if you want to the Office add-in to support this feature, you can try to submit the feedback here.




回答2:


Although you cannot limit the platform, you CAN detect the platform that you are on programatically.

https://dev.outlook.com/reference/add-ins/Office.context.mailbox.diagnostics.html

Office.context.mailbox.diagnostics.hostName

Will return Outlook, Mac Outlook or OutlookWebApp.

You could display an error message for the clients you don't want to support. Though this generally goes against a core principle of the platform of "write once, run anywhere"



来源:https://stackoverflow.com/questions/37671721/disable-office-365-outlook-add-in-for-desktop

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!