Hi

I know this is not django specific but since I am using Pyfacebook and
this was written by a Django-friendly programmer, I am posting this
here (facebook has no decent python forum)

First of all, I really don't want to use dango for the time being -
Pyfacebook has a very simple desktop example and I wanted to get it
working, atleast get a friends list before moving on to django - if
someone has worked used the pyfacebook, any help would be greatly
appreciated - thanks...

----------
When a user lands on the url for my application, I redirect them to
http://www.facebook.com/login.php?api_key=<api_key>&v=1.0

where <api_key> is the api key string - this again redirects the user
to my canvas page URL with the authentication token in the query
string

Next, I call

fb = facebook.Facebook(<apikey>, <secret>, <auth_token>)
fb.auth.getSession()

fb.auth.getSession() throws this error, I am not sure why this happens
- can someone please help me out?

Traceback (most recent call last):
  File "/home/htdocs/cg/afterlogin/index.cgi", line 25, in <module>
    fb.auth.getSession()
  File "/home/public/cg/afterlogin/facebook.py", line 324, in
getSession
    result = self._client('%s.getSession' % self._name, args)
  File "/home/public/cg/afterlogin/facebook.py", line 642, in __call__
    return self._parse_response(response, method)
  File "/home/public/cg/afterlogin/facebook.py", line 624, in
_parse_response
    self._check_error(result['error_response'])
  File "/home/public/cg/afterlogin/facebook.py", line 574, in
_check_error
    raise FacebookError(response['error_code'], response['error_msg'],
response[
'request_args'])
facebook.FacebookError: Error 100: Invalid parameter
[EMAIL PROTECTED] /home/htdocs]$
facebook.FacebookError: Error 100: Invalid parameter
-bash: facebook.FacebookError:: command not found


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to