Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #39232
| From | Terry Reedy <tjreedy@udel.edu> |
|---|---|
| Subject | Re: Facebook Graph API |
| Date | 2013-02-19 10:33 -0500 |
| References | <651b573c-b1f6-4343-93b6-d688d22d642d@googlegroups.com> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.2031.1361288055.2939.python-list@python.org> (permalink) |
On 2/19/2013 7:37 AM, takeshi honda wrote:
> 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.
Look in the reference for GraphAPI (Facebook account login required) to
find out what you should have written instead of 'get_connections'.
> friend_list = [friend['name'] for friend in friends['data']]
> print friend_list
>
--
Terry Jan Reedy
Back to comp.lang.python | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll 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