Ravi
Ravi

Reputation: 38

Which rest end point call when session getting timeout in office online?

We have integrate Office Online with our application and implement necessary rest end points in our application which are defined in Office Online documentation WOPI REST Documentation and all working fine.

But problem is that when Access token getting timeout from office online then it will not call any rest end point.

Is there any rest end point which intimate our application that your session getting timed out for current document?

Upvotes: 0

Views: 439

Answers (1)

rocky
rocky

Reputation: 7696

Are you setting the access_token_ttl? Are you setting it correctly? It is represented as the number of milliseconds since January 1, 1970 UTC. You may also set it to 0 to see whether the problem persists.

The only endpoint for refreshing tokens is GetNewAccessToken which is not required for most of the devices. In most cases Office Online will simply prompt users to save and refresh their sessions if the access token for their session is close to expiring.

Upvotes: 0

Related Questions