Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #39237

Re: Facebook Graph API

References <651b573c-b1f6-4343-93b6-d688d22d642d@googlegroups.com>
Date 2013-02-19 18:49 +0300
Subject Re: Facebook Graph API
From Сахнов Михаил <sahnov.m@gmail.com>
Newsgroups comp.lang.python
Message-ID <mailman.2036.1361288997.2939.python-list@python.org> (permalink)

Show all headers | View raw


[Multipart message — attachments visible in raw view] - view raw

You need to get token from API server before signing requests with it,
don't you?
19.02.2013 16:42 пользователь "takeshi honda" <moecho21@gmail.com> написал:

> The following code gave me the error, "facebook.GraphAPIError: Unsupported
> operation". How can I fix this error?
>
> import facebook
> import sys;
>
> token = 'mytokenxxxxxxxxx';
>
> graph = facebook.GraphAPI(token)
> profile = graph.get_object("myusername")
> friends = graph.get_connections("myusername", "friends") # error occured
> at this line.
>
> friend_list = [friend['name'] for friend in friends['data']]
> print friend_list
> --
> http://mail.python.org/mailman/listinfo/python-list
>

Back to comp.lang.python | Previous | NextPrevious in thread | Find similar | Unroll thread


Thread

Facebook Graph API takeshi honda <moecho21@gmail.com> - 2013-02-19 04:37 -0800
  Re: Facebook Graph API Terry Reedy <tjreedy@udel.edu> - 2013-02-19 10:33 -0500
  Re: Facebook Graph API Сахнов Михаил <sahnov.m@gmail.com> - 2013-02-19 18:49 +0300

csiph-web