sitemap.http 393 B

1234567891011121314151617181920212223242526
  1. ### 로그인
  2. # @name login
  3. POST {{baseUrl}}/api/users/login HTTP/1.1
  4. content-type: application/json
  5. {
  6. "type": 0,
  7. "userId": "ubitems",
  8. "passwd": "ubitems"
  9. }
  10. @token = {{login.response.body.AccessToken}}
  11. ### 사이트맵
  12. POST {{baseUrl}}/api/sitemap/upload/1
  13. Authorization: Bearer {{token}}
  14. [
  15. {
  16. "Path": "/test/calendar",
  17. "Name": "달력",
  18. "Icon": "calendar"
  19. }
  20. ]