20 lines
688 B
Python
20 lines
688 B
Python
|
|
# social/utils/meta.py - RECOMMENDED CONFIGURATION
|
|
|
|
# Use v24.0 (Latest) but keep it stable
|
|
BASE_GRAPH_URL = "https://graph.facebook.com/v24.0"
|
|
BASE_AUTH_URL = "https://www.facebook.com/v24.0"
|
|
|
|
# CRITICAL: Keep ALL scopes from Block 1
|
|
META_SCOPES = [
|
|
"pages_manage_engagement", # Reply to comments
|
|
"pages_read_engagement", # Read comments/reactions
|
|
"pages_show_list", # REQUIRED: To discover pages and get Page Access Tokens
|
|
"pages_read_user_content", # Read user content
|
|
"instagram_basic", # IG Basic info
|
|
"instagram_manage_comments", # Manage IG comments
|
|
"public_profile", # User profile info
|
|
]
|
|
|
|
|