rvkstat (version 2.6.3)

vkGetUserFriends: Frend List in 'Vkontakte'

Description

Returns a list of user friends identifiers and extended information about the user's friends.

Usage

vkGetUserFriends(user_id = NULL, access_token = NULL, api_version =
                 NULL, name_case = "nom")

Arguments

user_id

user ID for which you want to get a list of friends. If the parameter is not specified, it is considered that it is equal to the identifier of the current user.

name_case

case for declining the user's first and last name. Possible values: nominative - nom, genitive - gen, dative - dat, accusative - acc, ablative - ins, prepositional - abl. Default nom.

access_token

API access token, obtained using the functions vkAuth or vkGetToken

api_version

Vkontakte API version for send rquest.

Value

Date frame with community statistics with the following values:

1. user_id

user id.

2. first_name

name.

3. last_name

last name

4. gender

sex.

5. nickname

nickname of the user.

6. domain

short page address. Returns a string containing the short address of the page (for example, andrew). If not assigned, it returns "id" + user_id, for example, id35828305.

7. bdate

date of birth. Returns in the format D.M.YYYY or D.M (if the year of birth is hidden). If the date of birth is hidden entirely, the field is absent in the answer.

8. city

city id, city name can be obtained using the function vkGetDbCities.

9. country

country id, country name can be obtained using the function vkGetDbCountries.

10. photo_50

url of a square photo of a user having a width of 50 pixels. If the user does not have a photo, he returns http://vk.com/images/camera_c.gif.

11. photo_100

url of a square photo of a user having a width of 100 pixels. If the user doesn<U+2019>t have a photo, he returns http://vk.com/images/camera_b.gif.

12. photo_200_orig

url of a user photo that has a width of 200 pixels. If the user doesn<U+2019>t have a photo, he returns http://vk.com/images/camera_a.gif.

13. has_mobile

information about whether the user's mobile phone number is known. Return values: 1 - known, 0 - unknown.

14. online

information about whether the user is currently online.

15. can_post

information about whether the current user can post on the wall. Possible values: 1 - can, 0 - can not.

16. can_see_all_posts

information about whether the current user can see someone else's posts on the wall. Possible values: 1 - can, 0 - can not.

17. can_write_private_message

information about whether the current user can send a private message. Possible values: 1 - can, 0 - can not.

18. status

user status. Returns a string containing the text of the status located in the profile under the user name.

19. last_seen_time

date and time of last visit.

20. last_seen_platform

the type of platform through which the last entry was made. Possible values: 1 - mobile version, 2 - application for iPhone, 3 - application for iPad, 4 - application for Android, 5 - application for Windows Phone, 6 - application for Windows 10, 7 - full version of the site.

21. university

university id.

22. university_name

university name.

23. faculty

faculty id.

24. faculty_name

faculty name.

25. graduation

graduation year.

26. education_form

learning form

27. education_status

status (for example, "Graduate (Specialist)")

28. relation

marital status of the user. Possible values: 1 - not married / not married, 2 - have a friend / have a girlfriend, 3 - engaged / engaged, 4 - married / married, 5 - everything is difficult, 6 - in active search, 7 - in love / in love, 8 - in a civil marriage, 0 - not specified.

Examples

Run this code
# NOT RUN {
## auth
my_tok <- vkAuth(app_id = 1, app_secret = "H2Pk8htyFD8024mZaPHm")

## user list
my_vk_friends <- vkGetUserFriends(user_id = 7437995,
                                  access_token = my_tok$access_token)
# }

Run the code above in your browser using DataCamp Workspace