Advertisement
Guest User

Untitled

a guest
Nov 3rd, 2016
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. request.post({
  2. url: "https://api.kik.com/v1/config",
  3. auth: {
  4. user: "<my-user-name>",
  5. pass: "<my-api-key>"
  6. },
  7. json: {
  8. "webhook": "<link>",
  9. "features": {
  10. "receiveReadReceipts": false,
  11. "receiveIsTyping": false,
  12. "manuallySendReadReceipts": false,
  13. "receiveDeliveryReceipts": false
  14. },
  15. "staticKeyboard": {
  16. "type": "suggested",
  17. "responses": [
  18. {
  19. "body": "Start",
  20. "type": "text"
  21. },
  22. {
  23. "body": "Help",
  24. "type": "text"
  25. }
  26. ]
  27. }
  28. }
  29. }, callback);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement