2016-12-26 44 views
0

我使用django-allauth來獲取訪問令牌。使用來自django-allauth的訪問令牌調用圖形API時出錯

然後我做這樣的判斷:

https://graph.facebook.com/v2.8/10153430807524570/?access_token=' + 
access_token 

,我得到這個錯誤信息:

{'error': {'type': 'GraphMethodException', 'code': 100, 'fbtrace_id': 
'GILhd/N+d7D', 'message': "Unsupported get request. Object with ID 
'10153430807524570' does not exist, cannot be loaded due to missing 
permissions, or does not support this operation. Please read the Graph 
API documentation at https://developers.facebook.com/docs/graph-api"}} 

當我使用的訪問令牌從圖形API資源管理器,它的工作原理。

2個訪問令牌是不同的。

回答

0

得到了我的問題的答案。

這是一個權限的問題:Django-allauth訪問令牌和我從Graph Explorer獲得的令牌沒有提供相同的權限。

相關問題