Re: Facebook Graph API

2013-02-19 Thread Сахнов Михаил
You need to get token from API server before signing requests with it, don't you? 19.02.2013 16:42 пользователь "takeshi honda" написал: > The following code gave me the error, "facebook.GraphAPIError: Unsupported > operation". How can I fix this error? > > import facebook > import sys; > > token

Re: Facebook Graph API

2013-02-19 Thread Terry Reedy
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 = 'mytokenx'; graph = facebook.GraphAPI(token) profile = graph.get_object("myusername") friends

Facebook Graph API

2013-02-19 Thread takeshi honda
The following code gave me the error, "facebook.GraphAPIError: Unsupported operation". How can I fix this error? import facebook import sys; token = 'mytokenx'; graph = facebook.GraphAPI(token) profile = graph.get_object("myusername") friends = graph.get_connections("myusername", "frien