英文:
how to interact with my internal web application through an outlook add in
问题
我有一个内部网站,我们过去用来跟踪和更新出勤情况。现在我想开发一个Outlook插件,通过该插件可以直接申请请假,而不必登录内部网站。我们可以假设Outlook和内部应用程序的凭证是相同的。
我对插件的整个概念都很陌生,我创建了一个示例应用程序,我认为我们可能需要一个API或类似的东西来与内部应用程序进行交互。我需要一些具体的示例来进一步操作。我想知道是否可能,如果可能的话,如何相应地更改清单和JavaScript。
英文:
I have an internal website where we used to track and update our attendance. Now i want to develop an outlook add in through which I can apply the leave from the add in itself instead of logging into the internal website. We can assume that the credentials are same for both outlook and the internal application.
I am new to the whole concept of Add ins and I created a sample application and I think we might need an api or something like that to interact with the internal application. I need some solid examples to proceed further. I want to know if its possible and if so how to change the manifest and javascript accordingly.
答案1
得分: 1
你需要一个可以从你的网络加载项调用的终端点(服务器端)。例如,如果Blazor是一个可能的选择,可以参考A quick introduction to Server-side Blazor apps这篇文章。
英文:
You need an end point (server-side) which can be called from your web add-in. For example, if Blazor is a possible option, take a look at the A quick introduction to Server-side Blazor apps article.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论