Advertisement
GigilinE

Untitled

Mar 10th, 2017
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. apiRequestJson("sendMessage", array(
  2. 'chat_id' => $chat_id,
  3. "text" => 'test',
  4. 'reply_markup' => array(
  5. 'InlineKeyboardMarkup' => array(
  6. 'inline_keyboard' => array(
  7. 'InlineKeyboardButton' => array(
  8. array(
  9. 'text' => 'open url',
  10. 'url' => 'http://google.it'
  11. ),
  12. array(
  13. 'text' => "inline",
  14. 'switch_inline_query' => ''
  15. ),
  16. array(
  17. 'text' => "callback",
  18. 'callback_data' => ''
  19. )
  20. )
  21. )
  22. )
  23. )
  24. ));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement