Skip to content
This repository was archived by the owner on Jan 5, 2026. It is now read-only.
This repository was archived by the owner on Jan 5, 2026. It is now read-only.

Facebook Messenger not always responding #4847

@yochail

Description

@yochail

Bot Info

  • SDK Platform: .NET
  • SDK Version: 3.15.3
  • Active Channels: messenger
  • Deployment Environment: Azure App Service

Issue Description

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.

image

ther was no exception in the bot service channels gui:
image

no message got to the bot
image

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

  1. 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

Actual Results

the bot didn't receive any message

Metadata

Metadata

Assignees

Labels

No labels
No labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions