Skip to content

Instantly share code, notes, and snippets.

@JRGould
Last active July 13, 2017 13:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JRGould/3203e0132c5de73f2ea94b91ed72e2e2 to your computer and use it in GitHub Desktop.
Save JRGould/3203e0132c5de73f2ea94b91ed72e2e2 to your computer and use it in GitHub Desktop.
WPFBBotKit Buttons Array
$M->reply_with_buttons( 'Looking for something to read?', array(
array(
'type' => 'postback',
'title' => '👀 Something new.',
'payload' => 'GET_LATEST_POST',
),
array(
'type' => 'postback',
'title' => '👍 Vintage post, B!',
'payload' => 'GET_ARCHIVE_POST',
),
array(
'type' => 'postback',
'title' => '🤓 I\'m all caught up!',
'payload' => 'GET_GIF',
),
));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment