I'm new to django. Now I just added django-facebook to my project. The installation went fine, everything seems working.
Now I'm trying to use user's profile like name,facebookID, etc. to other apps beside django-facebook. I tried to use
from open_facebook import OpenFacebook
def create_bets(request):
graph = OpenFacebook(access_token)
facebook.set('me/feed', message='check out fashiolista',
url='http://www.fashiolista.com')
return render_to_response('createbets.html', args)
it doesn't work. I'm getting an error that access_token doesn't exist. Could anyone suggest me a solution please?