Skip to content

tophitpoker/evk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

evk

Erlang library to access API of VK.com social network.

Get VK API Request URL

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!

Licence

MIT - http://en.wikipedia.org/wiki/MIT_License

About

Erlang lib for VKontakte Social Network

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages