-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathsettings.ini.default.php
37 lines (33 loc) · 1.55 KB
/
settings.ini.default.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?php
return array(
'enable_debug' => false, // Log errors etc in cache/default.log file
'fb_disabled' => false, // If you only WhatsApp integration you can disable facebook messenger related part completely
'scopes' => array(
'email',
'pages_show_list',
'pages_messaging',
'instagram_manage_messages',
'instagram_basic',
'pages_manage_metadata',
// New after update
'pages_read_engagement',
// WhatsApp
'whatsapp_business_management',
'whatsapp_business_messaging',
'business_management'
),
'standalone' => array (
'disable_manual_whatsapp' => false, # Should we hide WhatsApp manual numbers section
'enabled' => false, # Is standalone mode enabled
'secret_hash' => '', # Put any random string we use for communication and verifying request
'address' => 'https://demo.livehelperchat.com' # Master instance where all login happens
),
'app_settings' => array (
'app_id' => getenv('FBM_APPID') ?: '', # Facebook Messenger App ID
'app_secret' => getenv('FBM_APPSECRET') ?: '', # Facebook Messenger App Secret
'verify_token' => getenv('FBM_VERIFYTOKEN') ?: '', # Facebook Messenger Verify Token
'whatsapp_verify_token' => getenv('WHATSAPP_VERIFYTOKEN') ?: '', # WhatsApp Verify Token
'instagram_verify_token' => getenv('INSTAGRAM_VERIFYTOKEN') ?: '', # Instagram verify Token
)
);
?>