Advertisement
Guest User

Untitled

a guest
Apr 25th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. // Add the follow Code Snippet to index.html from swagger-ui
  2.  
  3. // ...
  4. window.swaggerUi = new SwaggerUi({
  5. url: url,
  6. // --- --- --- ----
  7. useJQuery: true,
  8. authorizations: {
  9. makeCredentialed: function() {
  10. this.xhrFields = {withCredentials: true}; // The important bit, along with useJQuery
  11. return true;
  12. }
  13. },
  14. // --- --- --- ----
  15. // ...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement