Skip to content

Latest commit

 

History

History
55 lines (41 loc) · 1.27 KB

File metadata and controls

55 lines (41 loc) · 1.27 KB

Token

A token can be used to communicate with the Sentiance API.

Token API

getExpiryDate()

Date getExpiryDate()

Returns a Date object indicating the token expiry date.

The SDK will always attempt to return a valid token, granted proper network connectivity exists to allow token refresh.

getTokenId()

String getTokenId()

Returns the token ID.

isExpired()

boolean isExpired()

Returns true if the token is expired.

setExpiryDate()

void setExpiryDate(Date expiryDate)

Sets the token expiryDate

Parameters
expiryDate A Date object indicating the token expiry date.

setTokenId()

void setTokenId(String tokenId)

Sets the token ID.

Parameters
tokenId The token ID.