Description Usage Arguments Details Value Author(s) References Examples
View source: R/vkGetDbRegions.R
Get regions dictionary.
1 2 3 4 5 6 7 8  | vkGetDbRegions(
    country_id,
    q = NULL,
    username     = getOption("rvkstat.username"),
    api_version  = getOption("rvkstat.api_version"),
    token_path   = vkTokenPath(),
    access_token = getOption("rvkstat.access_token")
)
 | 
country_id | 
 country identifier obtained using the vkGetDbCountries function.  | 
q | 
 search query string. For example, Len. The maximum string length is 15 characters.  | 
username | 
 Your vkontakte login.  | 
api_version | 
 Vkontakte API version.  | 
token_path | 
 Path to dir with credentials  | 
access_token | 
 API access tokens obtained using vkAuth or vkGetToken functions  | 
If the q parameter is not specified, then a list of all regions in the given country will be returned. If the q parameter is specified, a list of regions that are relevant to the search query will be returned.
Data frame contains community statistics with the following values:
1. region_id | 
 region identifier.  | 
2. title | 
 name of the region.  | 
Alexey Seleznev
Documentation for API method database.getRegions: https://vk.com/dev/database.getRegions
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17  | ## Not run: 
## auth
my_tok <- vkAuth(app_id = 1, 
                 app_secret = "H2Pk8htyFD8024mZaPHm")
## Get a list of regions for Ukraine, because Ukraine id = 2
vk_regions  <- vkGetDbRegions(country_id = 2,
                              access_token = my_tok$access_token)
##get a list of cities of Ukraine on request "Ode"
vk_regions_search  <- vkGetDbRegions(country_id = 2,
                                     q = "Ode",
                                     access_token = my_tok$access_token)
## End(Not run)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.