-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
executable file
·39 lines (39 loc) · 1.41 KB
/
app.json
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
38
39
{
"name": "Instagram API Example App",
"description": "An example Instagram App.",
"repository": "https://github.com/fbsamples/original-coast-clothing-ig",
"logo": "https://raw.githubusercontent.com/fbsamples/original-coast-clothing-ig/main/public/logo.svg",
"keywords": [
"node",
"express",
"instagram",
"facebook"
],
"env": {
"APP_ID": {
"description": "ID of your Facebook App. See: https://developers.facebook.com/docs/development/create-an-app/app-dashboard#app-id",
"value": ""
},
"APP_SECRET": {
"description": "The Secret of your Facebook App. Your App secret can be found in App Dashboard -> Settings -> Basic",
"value": ""
},
"PAGE_ID": {
"description": "ID of your Facebook Page which is connected to Instagram",
"value": ""
},
"PAGE_ACCESS_TOKEN": {
"description": "Page Access Token. See: https://developers.facebook.com/docs/pages/access-tokens/#get-a-page-access-token",
"value": ""
},
"VERIFY_TOKEN": {
"description": "An arbitrary string that is used for the webhook verification request. See: https://developers.facebook.com/docs/messenger-platform/getting-started/webhook-setup/",
"value": ""
},
"LOCALE": {
"description": "Optional code for experience locale, e.g. `responses`. Must match a file in locales folder.",
"value": "responses",
"required": false
}
}
}