wall Access to standard and advanced methods for the wall.
groups Access to user groups.
messages Access to advanced methods for messaging.
notifications Access to notifications about answers to the user.
Examples
## Not run:# an example of an authenticated requestvkOAuth(client_id =123456, scope ="friends,groups,messages", email ="your_email@example.com", password ="your_secret_password")# save access token for future sessionsat <- getAccessToken()# an example of requestme()# an example of an authenticated request without specifying email and passwordvkOAuth(client_id =123456, scope ="friends,groups,messages")# copy access token from browser address barsetAccessToken("your_secret_access_token")## End(Not run)