Interface O365DeviceCodeResponse
- All Known Implementing Classes:
ImmutableO365DeviceCodeResponse
public interface O365DeviceCodeResponse
Represents a device code response from Microsoft Azure to sign in to the
Microsoft authentication portal (for use in modern auth).
- Author:
- Sachin Mittal
-
Method Summary
Modifier and TypeMethodDescriptionlongShows the lifespan of the code in milliseconds.message()Shows the help message.userCode()Shows the code that you must copy and then specify on the Microsoft authentication portal.Shows the verification URL that you must open to sign in to Microsoft Azure.
-
Method Details
-
userCode
String userCode()Shows the code that you must copy and then specify on the Microsoft authentication portal. -
verificationUrl
String verificationUrl()Shows the verification URL that you must open to sign in to Microsoft Azure. -
expiresIn
long expiresIn()Shows the lifespan of the code in milliseconds. -
message
String message()Shows the help message.
-