Есть такая стратегия:
passport.use('vk', new AuthVKStrategy({
clientID: config.get("auth:vk:app_id"),
clientSecret: config.get("auth:vk:secret"),
callbackURL: config.get("app:url") + "/auth/vk/callback"
},
function (accessToken, refreshToken, profile, done) {
return done(null, {
username: profile.displayName,
photoUrl: profile.photos[0].value,
profileUrl: profile.profileUrl
});
}
));
Есть такой запрос:
https://api.vk.com/method/friends.get?user_id=some_id&order=random&count=5&access_token=ACCESS_TOKEN&v=5.64
Как это должно выглядеть вместе?