我正在尝试与VK Api合作。我看到获取用户ID的方法。
method=getProfiles&uids={viewer_id}&format=json&v=2.0
请举例说明使用它?向VK Api发送查询并获取结果的示例。谢谢!
答案 0 :(得分:0)
https://api.vk.com/method/users.get?user_ids=205387401&fields=photo_50,city,verified 检查VK的新API链接:http://vk.com/dev/users 我认为它可以帮到你
答案 1 :(得分:0)
您可以使用vk.com/dev中的信息
我使用JavaScript和jQuery工作。
function sendRequest(method, params, func) {
$.ajax({
url: getUrl(method, params),
method: 'GET',
dataType: 'JSONP',
success: func
});
}