withScopes method
Specifies a set of scopes which will be requested from user.
Not all of them may be granted. You have to specify a subset a scopes that you request for your app in Self Service. If you keep the scopes empty, only the default scope will be requested from user. You can view the list of available scopes here: https://dev.vk.com/ru/reference/access-rights. The user will see a screen where he may grant some of this scopes during authorization process.
Implementation
AuthParamsBuilder withScopes(Set<String> scopes) {
_scopes = scopes;
return this;
}