Erlang library to access API of VK.com social network.
To build VK API Request URL use the following function:
RequestURl = evk:make_url(AppId, SecretKey, Method, MethodParams).
More detailed example:
% Application ID
AppId = <<"100">>,
% Application Secret Key
AppSecretKey = <<"SecretKey">>,
% Building API request url
RequestURl = evk:make_url(AppId, AppSecretKey, ?EVK_GET_PROFILES, [{uids, <<"1">>}, {fields, <<"online">>}]).
% ...
% Call RequestURl and parse result
% PROFIT!