Charca / bootbot

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

how to get user profile information with the message? #76

Closed karthikeyana closed 6 years ago

karthikeyana commented 6 years ago

I can able to get user user text which they sent but i want to get user information also. Kindly help me to resolve this one. Thanks.

karthikeyana commented 6 years ago

Thanks i found information from document.

chat.getUserProfile().then((user) => {
        chat.say('Hello, human friend!').then(() => {
            chat.say('How are you today?', { typing: true });
        });
    });