CodingFanSteve
CodingFanSteve

Reputation: 783

What is the cache control policy of Outlook web addin?

We are looking for the cache control policy of Outlook web addin.

Specifically, if our manifest remains the same, while we update the content of the html that the manifest URL points to, how long it takes for the change to take effect.

We did not find any related documents related on Office dev center. We did some debug with our addin and checked the response headers of the addin html (referenced directly by the manifest), it has "cache-control: private". Does it mean they will never expire? And we have to update our manifest to roll out any addin update?

We are also looking for the best practice to rollout manifest changes (we will be running production service). We are wondering if Office Store will poll manifest changes from our endpoint on a certain schedule. It would be great if someone can point me to the related document. Thanks!

Upvotes: 0

Views: 336

Answers (1)

user7823505
user7823505

Reputation:

We follow regular web caching policies found here. cache-control: private indicates that the response is intended for a single user and must not be stored by a shared cache. It does not control expiration.

Upvotes: 1

Related Questions