In cnn fb messenger bot if i write subscribe they show a message like "Got it. I’ll send you top stories every day." and then they daily send me top stories at fixed time. How they do it? I created an fb bot for my site without this but i can't understand how i add this. can anyone tell me basic instruction for this?
Asked
Active
Viewed 6,723 times
6
-
Pretty sure you can just respond to messages – WizKid Jun 20 '16 at 12:03
-
Now i can not add a method like cnn meesenger bot (daily top stories at fixed time)? and my code created with php curl – Rubel Khan Jun 20 '16 at 12:13
-
What does your code look like? – WizKid Jun 20 '16 at 12:38
-
like following [http://stackoverflow.com/questions/36657366/messenger-bot-in-php-no-response-back](http://stackoverflow.com/questions/36657366/messenger-bot-in-php-no-response-back) it's work in my site. – Rubel Khan Jun 20 '16 at 13:33
1 Answers
6
The idea is simple. When you send "subscribe" to the bot, the bot server would add a record according to the sender_id
to their database or memory , then the bot server could set a timer to distribute the news messages to those sender_id
who have subscribed for the news.

Hui-Yu Lee
- 909
- 8
- 20
-
Thanks brother for this. Can you show me a basic code how it's work by php? – Rubel Khan Jun 24 '16 at 22:21
-
don't know which part you want. For the bot receiver and sender there are some sample codes written in php, you can search and reach them through internet. For the daily notification, you can use `crontab` to schedule a task, select the sender_id in your database and send the message to the users. – Hui-Yu Lee Jun 26 '16 at 12:38
-
Hi Thanks brother for crontab information.I am working to following link [https://gist.github.com/visitdigital/58c71acb123870d1ac2ec714d7536587](https://gist.github.com/visitdigital/58c71acb123870d1ac2ec714d7536587). From this link, you will show "The message you want to return" [line number 30]. For example, how i send daily this message automatic to user like cnn by php. – Rubel Khan Jun 27 '16 at 08:04