0

When I use Conversations.SendToConversationAsync, the message arrives well on FB messenger but it not there no notification. How I can make to triggers notification on mobile device for FB messenger?

Thank you

Kibs J.
  • 133
  • 1
  • 1
  • 9

2 Answers2

0

Please make sure Messenger app has notification permissions. On Android, go to Settings -> Apps -> Messenger -> Notifications and make sure that Block All is not checked.

akinmail
  • 638
  • 6
  • 14
0

Just add this to the activity:

using Newtonsoft.Json.Linq;
...
      activity.ChannelData = JObject.FromObject(
      new
      {
          notification_type = "REGULAR"
      });
The Memebot
  • 3,199
  • 1
  • 16
  • 21