I have installed facebook module in python through console
pip install facebook-sdk
then registered to facebook api to get app_id and app_secret.I am not disclosing them below.
import facebook
app_id = '00000'
app_secret = 'xxxx'
access_token = facebook.get_app_access_token(app_id,app_secret)
when i execute it to get access_token, my python console throws the following error:
Traceback (most recent call last):
  File "<ipython-input-18-0dfc0fd92367>", line 1, in <module>
access_token = facebook.get_app_access_token(app_id,app_secret)
AttributeError: 'module' object has no attribute 'get_app_access_token'
please help.
