Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to develop facebook app using django.

The problem I am facing is how to use facebook api and get user friend list.

view.py

def canvas(request):
    # Get the User object 
    user, created = FacebookUser.objects.get_or_create(id = request.facebook.uid)
    return direct_to_template(request, 'canvas.fbml', extra_context={'fbuser': user,})

so it's working fine for me. I am getting user info in my page.

Welcome,<fb:name uid="{{ fbuser.id }}" firstnameonly="true" useyou="false" />!

this is canvas.fbml

Help needed.

Thanks.

share|improve this question
2  
What help is needed? What doesn't work? What's broken? What error are you getting? What can't you do? – S.Lott May 7 '09 at 12:11

1 Answer

Try using single quotes when loading up the userID etc.

Failing that it would appear to be either of the following - Output error from python. The HTML / FBML output should be as follows

  • Double check the attributes you are adding are correct. Case sensitive.

  • Are you loading you the correct authentication info (Keys) in this file? I'm assuming as its on the canvas its all ok. Test hte FBML in the FBML console.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.