You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 5, 2026. It is now read-only.
from time to time, for some users, the bot is not responding to FB opening message - the "get Started" button payload. this is happening usually for a couple of users, in a specific time period.
for instance:
bot id: say2eat-slicefactory
fb app id: 416560508765917
fb page id: 184610795480041
timeframe: 7/10/18 19:10-20:10 UTC
the bot didn't receive three users messages. the bot did receive users messages before and after that time period. no change has been made.
ther was no exception in the bot service channels gui:
no message got to the bot
Code Example
this is the code used to create the get started postback:
dynamic data = new ExpandoObject();
Data.get_started = new ExpandoObject();
Data.get_started = new
{
payload = "new order"
};
var stringData = Newtonsoft.Json.JsonConvert.SerializeObject(data);
using (WebClient client = new WebClient())
{
client.Headers[HttpRequestHeader.ContentType] = "application/json";
var result = client.UploadString(url,stringData);
}
Reproduction Steps
this is happening (Randomly?) for one or two customers every day, but I cant reproduce the effect from my FB account.
Expected Behavior
the bot should receive the button payload and answer the user