MCPcopy Create free account
hub / github.com/auth0/JWTDecode.Android / getAudience

Method getAudience

lib/src/main/java/com/auth0/android/jwt/JWT.java:89–92  ·  view source on GitHub ↗

Get the value of the "aud" claim, or an empty list if it's not available. @return the Audience value or an empty list.

()

Source from the content-addressed store, hash-verified

87 * @return the Audience value or an empty list.
88 */
89 @Nullable
90 public List<String> getAudience() {
91 return payload.aud;
92 }
93
94 /**
95 * Get the value of the "exp" claim, or null if it's not available.

Calls

no outgoing calls