0

Does anyone know how to get list of Page's Tabs with facebooker2 please?

Michal

4

1 に答える 1

1

This is actually pretty straight fwd to do with https://github.com/arsduo/koala

assuming you have the access token for the user, you can get all its pages / apps by getting the accounts connection:

graph = Koala::Facebook::GraphAPI.new(access_token)
pages = graph.get_connections("me", "accounts")

from there, you need to get the correct access token for the page, and then get the tabs using the tabs connection.

于 2012-01-11T17:50:34.750 に答える