Office-Add-in-samples
Office-Add-in-samples copied to clipboard
Code samples for Office Add-in development on the Microsoft 365 platform.
Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 6.0.4 to 13.0.1. Release notes Sourced from Newtonsoft.Json's releases. 13.0.1 New feature - Add JsonSelectSettings with configuration for a regex timeout Change - Remove portable assemblies from...
Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 6.0.4 to 13.0.1. Release notes Sourced from Newtonsoft.Json's releases. 13.0.1 New feature - Add JsonSelectSettings with configuration for a regex timeout Change - Remove portable assemblies from...
Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 6.0.4 to 13.0.1. Release notes Sourced from Newtonsoft.Json's releases. 13.0.1 New feature - Add JsonSelectSettings with configuration for a regex timeout Change - Remove portable assemblies from...
> Note: This repo is only for questions related to its samples. If you have questions about how to use office.js or the Office developer platform, please post your question...
In the following article: https://docs.microsoft.com/en-us/office/dev/add-ins/develop/dialog-api-in-office-add-ins there is an image of a dialog that uses an external sign-in process. A secondary article: https://docs.microsoft.com/en-us/office/dev/add-ins/develop/auth-with-office-dialog-api discusses the technology. Why is there no fully...
The https://github.com/OfficeDev/PnP-OfficeAddins/tree/main/Samples/auth/Outlook-Add-in-SSO sample requires ASP.NET and cannot run on Mac. Create an Outlook SSO sample that uses Node.js to support cross platform development work. Created based on customer suggestion: https://github.com/OfficeDev/office-js-docs-pr/issues/2955
**Question** Regarding: PnP-OfficeAddins/Samples/auth/Outlook-Add-in-SSO/ When I run the sample code inside an Outlook desktop client, select a message with an attachment, and click "Choose Attachments" it throws this error: JavaScript critical...
| Q | A | | --------------- | --------------------------------------- | | Bug fix? | yes | | New feature? | no | | New sample? | no | | Related...
**URL of sample** https://github.com/OfficeDev/PnP-OfficeAddins/tree/3ce0e1b74152dbbe8306a091696bc4455c04c0a1/Samples/auth/Office-Add-in-Microsoft-Graph-ASPNET **Describe the bug** Note: The sample works fine in Windows Outlook, but not in Web Outlook in a browser. The code sample uses http cookies to...
in _restService.js_ we have the two following functions ``` javascript function getCompany(mailbox){ var deferred = $q.defer(); var restQueryUrl = "https://localhost:44301/api/companies?$filter=substringof(Email,'" + mailbox.from.emailAddress + "')"; $http({ method: 'GET', url: restQueryUrl, /*...