From the document : Configurable token lifetimes in Azure Active Directory (Public Preview)
It mentioned for "confidential client", the refresh token is "until-revoked".
Confidential clients are applications that can securely store a client password (secret). They can prove that requests are coming from the client application and not from a malicious actor. For example, a web app is a confidential client because it can store a client secret on the web server. It is not exposed. Because these flows are more secure, the default lifetimes of refresh tokens issued to these flows is until-revoked, cannot be changed by using policy, and will not be revoked on voluntary password resets.
So, my Azure AD app is Web app, so, how I can change my Azure AD app to "confidential client"? I can't find any app settings in Azure AD to set "confidential client" or "public client".
Thanks.