public enum AuthFacebookScope extends Enum<AuthFacebookScope> implements AuthScope
| Enum Constant and Description |
|---|
EMAIL
scope 含义,以description 为准 |
GROUPS_ACCESS_MEMBER_INFO |
PUBLISH_TO_GROUPS |
USER_AGE_RANGE |
USER_BIRTHDAY |
USER_FRIENDS |
USER_GENDER |
USER_HOMETOWN |
USER_LIKES |
USER_LINK |
USER_LOCATION |
USER_PHOTOS |
USER_POSTS |
USER_VIDEOS |
| Modifier and Type | Method and Description |
|---|---|
static AuthFacebookScope |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuthFacebookScope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuthFacebookScope EMAIL
scope 含义,以description 为准public static final AuthFacebookScope USER_AGE_RANGE
public static final AuthFacebookScope USER_BIRTHDAY
public static final AuthFacebookScope USER_FRIENDS
public static final AuthFacebookScope USER_GENDER
public static final AuthFacebookScope USER_HOMETOWN
public static final AuthFacebookScope USER_LIKES
public static final AuthFacebookScope USER_LINK
public static final AuthFacebookScope USER_LOCATION
public static final AuthFacebookScope USER_PHOTOS
public static final AuthFacebookScope USER_POSTS
public static final AuthFacebookScope USER_VIDEOS
public static final AuthFacebookScope GROUPS_ACCESS_MEMBER_INFO
public static final AuthFacebookScope PUBLISH_TO_GROUPS
public static AuthFacebookScope[] values()
for (AuthFacebookScope c : AuthFacebookScope.values()) System.out.println(c);
public static AuthFacebookScope valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2021. All rights reserved.