Skip to content

Commit

Permalink
Fix Facebook page token env variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
keyvanakbary authored and patapizza committed Apr 14, 2016
1 parent 47e66a8 commit c93f711
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/messenger.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const FB_PAGE_ID = process.env.FB_PAGE_ID && Number(process.env.FB_PAGE_ID);
if (!FB_PAGE_ID) {
throw new Error('missing FB_PAGE_ID');
}
const FB_PAGE_TOKEN = process.env.FB_TOKEN;
const FB_PAGE_TOKEN = process.env.FB_PAGE_TOKEN;
if (!FB_PAGE_TOKEN) {
throw new Error('missing FB_PAGE_TOKEN');
}
Expand Down

0 comments on commit c93f711

Please sign in to comment.