Code Monkey home page Code Monkey logo

Comments (4)

7even avatar 7even commented on July 25, 2024

Нужно понять, какие права есть у токена (@vk.scope), и что пишется в лог при запросе friends.get.

from vkontakte_api.

exAspArk avatar exAspArk commented on July 25, 2024

При вызове

# вызов метода
@vk.scope

# логи
POST https://api.vk.com/method/getUserSettings
body: ""
{"error":{"error_code":113,"error_msg":"Invalid user id","request_params":[{"key":"oauth","value":"1"},{"key":"method","value":"getUserSettings"}]}}

# на странице
VkontakteApi::Error (VKontakte returned an error 113: 'Invalid user id' after calling method 'getUserSettings' without parameters.)

При вызове

# вызов метода
@vk.friends.get(fields: [:first_name, :last_name, :screen_name])

# логи
POST https://api.vk.com/method/friends.get
body: "fields=first_name%2Clast_name%2Cscreen_name"
{"error":{"error_code":113,"error_msg":"Invalid user id","request_params":[{"key":"oauth","value":"1"},{"key":"method","value":"friends.get"},{"key":"fields","value":"first_name,last_name,screen_name"}]}}

# на странице
VkontakteApi::Error (VKontakte returned an error 113: 'Invalid user id' after calling method 'friends.get' with parameters {"fields"=>"first_name,last_name,screen_name"}.):

from vkontakte_api.

7even avatar 7even commented on July 25, 2024

Все говорит о том, что в запросах токен не передается, т.е. @vk просто не авторизован.

В этой строчке:

@vk = VkontakteApi::Client.new(access_token)

access_token должен содержать строку с токеном, тогда все заработает.

from vkontakte_api.

exAspArk avatar exAspArk commented on July 25, 2024

О, благодарю за столь скорую помощь!
Передача самого значения token действительно помогла.

@vk = VkontakteApi::Client.new(access_token.credentials.token)

Можно закрывать issue и ставить star gem'у -)

from vkontakte_api.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.