Charca / bootbot

Facebook Messenger Bot Framework for Node.js
MIT License
974 stars 252 forks source link

Get started function is not responding. #65

Closed DaniyalGeek closed 6 years ago

DaniyalGeek commented 7 years ago
bot.setGetStartedButton((payload, chat) => {
  chat.getUserProfile().then((user) => {
    chat.say(`Hello ${user.first_name} !`);
  });
});

i am using this function and when click on "Get Started" it's look like typing but not respond in back.

Any solution?

sotirelisc commented 7 years ago

Looks like your bot is not subscribed to your Facebook Page. Check the corresponding section at https://developers.facebook.com and subscribe to the Page you're talking to.

mraaroncruz commented 6 years ago

Closing because of no response from OP (and great answer by @sotirelisc)