Guest User

Untitled

a guest
Jan 23rd, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. function chatbaseInput() {
  2. $.ajax({
  3. type: "POST",
  4. url: chatbaseURL,
  5. contentType: "charset=utf-8",
  6. dataType: "json",
  7. headers: {
  8. "Access-Control-Allow-Origin": "website link"
  9. },
  10. data: JSON.stringify({
  11. api_key: "apikey",
  12. type: "user",
  13. user_id: "140012004300",
  14. time_stamp: 1516765680000,
  15. platform: "Website",
  16. message: "Default Welcome Intent",
  17. intent: "Welcome Intent",
  18. version: "1.0"
  19. }),
  20. success: function (data) {
  21. setResponse("Chatbase works!");
  22. },
  23. error: function () {
  24. setResponse("Chatbase not working");
  25. }
  26.  
  27. });
Add Comment
Please, Sign In to add comment