VKontakte connector

Connector to VK social network (http://www.vk.com).

Time costs:

Additional fields:

Access token format:

Two types of token-data are available in KeyChain object:

  1. token = 'ACCESS_TOKEN_STRING' - real access token, that is used to make requests. It's time-limited, so you need to update it every time when using connector.

  2. Raw access data. KeyChain identifier: raw_vk. Format:

    token = {
        'app_id'    :STRING,
        'app_secret':STRING,
        'login'     :STRING,
        'password'  :STRING
    }
    

    In this form token data could be stored for unlimited time. Before using your token call KeyChain().autocomplete() or use vk_auth function from smapy.utilities to generate valid common access token.

    Read how to get access token: VKontakte token