VK Api - First steps

2.8k Views Asked by At

i'm trying to work with VK Api. I see methods for getting user ID.

method=getProfiles&uids={viewer_id}&format=json&v=2.0

Can you please show an example of using it? An example sending query to VK Api, and getting result. Thanks!

2

There are 2 best solutions below

0
On

You can use info from vk.com/dev

I use JavaScript and jQuery for work.

function sendRequest(method, params, func) {
    $.ajax({
    url: getUrl(method, params),
    method: 'GET',
    dataType: 'JSONP',
    success: func
    }); 
}

0
On