bottender icon indicating copy to clipboard operation
bottender copied to clipboard

type Message tags is different from facebook event

Open kpman opened this issue 5 years ago • 0 comments

Describe the bug The Message Tags type if different from facebook.

To Reproduce Steps to reproduce the behavior:

  1. Go to '...'
  2. Call on '....'
  3. See error

Expected behavior

export type Message = {
  mid: string;
  isEcho?: boolean;
  text?: string;
  stickerId?: number;
  quickReply?: QuickReply;
  attachments?: Attachment[];
  tags?: Tag; // should be Tag rather than Tag[]
  replyTo?: ReplyTo;
  appId?: number;
  metadata?: string;
};

Screenshots CleanShot 2020-10-28 at 17 23 56

Additional context FB docs: https://developers.facebook.com/docs/messenger-platform/discovery/facebook-chat-plugin#detect

CleanShot 2020-10-28 at 17 28 47

kpman avatar Oct 28 '20 09:10 kpman