{"info":{"_postman_id":"e7bb9ad8-fda0-4d15-aa18-ad8c72fde188","name":"Twitter-API文件","description":"<html><head></head><body><h3 id=\"本專案以nodejs及express框架製作，搭配mysql關聯式資料庫，提供simple-twitter後端restful-api。\">本專案以Node.js及express框架製作，搭配MySQL關聯式資料庫，提供Simple Twitter後端RESTful API。</h3>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"29223126","collectionId":"e7bb9ad8-fda0-4d15-aa18-ad8c72fde188","publishedId":"2s9Y5Ty4mq","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2023-08-21T08:38:39.000Z"},"item":[{"name":"前台","item":[{"name":"Users","item":[{"name":"api/users/signin","id":"822bf718-6ed4-41da-b790-10bcad73344a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"account\":\"user1\",\r\n    \"password\":\"12345678\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{Heroku_URL}}/api/users/signin","description":"<p>使用者可以登入</p>\n","urlObject":{"path":["api","users","signin"],"host":["{{Heroku_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"822bf718-6ed4-41da-b790-10bcad73344a"},{"name":"api/users","id":"53591c9b-0bc5-40bb-b0f8-b63b87c41ebb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"account\": \"Harry1\",\r\n    \"name\": \"Harry1\",\r\n    \"email\": \"Harry1@example.com\",\r\n    \"password\": \"12345678\",\r\n    \"checkPassword\": \"12345678\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{Heroku_URL}}/api/users","description":"<p>使用者可以註冊</p>\n","urlObject":{"path":["api","users"],"host":["{{Heroku_URL}}"],"query":[],"variable":[]}},"response":[{"id":"3cb9d023-2746-4999-9919-89bbf98d4232","name":"成功建立使用者","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"account\": \"Harry\",\n    \"name\": \"Harry\",\n    \"email\": \"Harry@example.com\",\n    \"password\": \"12345678\",\n    \"checkPassword\": \"12345678\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{Heroku_URL}}/api/users?account&name&email&password&checkPassword","host":["{{Heroku_URL}}"],"path":["api","users"],"query":[{"key":"account","value":null,"description":"帳號 | string | 限 50 字","type":"text"},{"key":"name","value":null,"description":"名稱 | string | 限 50 字","type":"text"},{"key":"email","value":null,"description":"電子信箱 | string","type":"text"},{"key":"password","value":null,"description":"密碼 | string | 限 8～20 字","type":"text"},{"key":"checkPassword","value":null,"description":"確認密碼  | string | 需與密碼相符","type":"text"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"198"},{"key":"Etag","value":"W/\"c6-udtHp/OZyJVbeBcgUEjJczAERdo\""},{"key":"Date","value":"Sun, 27 Aug 2023 10:18:28 GMT"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"user\": {\n            \"id\": 8,\n            \"name\": \"Harry\",\n            \"account\": \"Harry\",\n            \"email\": \"Harry@example.com\",\n            \"role\": \"user\",\n            \"updatedAt\": \"2023-08-27T10:18:27.451Z\",\n            \"createdAt\": \"2023-08-27T10:18:27.451Z\"\n        }\n    }\n}"},{"id":"695e3779-8dc8-4170-8c93-9e3298b06eb4","name":"密碼不符畫面","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"account\": \"Harry\",\n    \"name\": \"Harry\",\n    \"email\": \"Harry@example.com\",\n    \"password\": \"12345678\",\n    \"checkPassword\": \"123456789\"\n}","options":{"raw":{"language":"json"}}},"url":"{{Heroku_URL}}/api/users"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"71"},{"key":"Etag","value":"W/\"47-v3diLsV289UbvwakiCnN/VaFRSQ\""},{"key":"Date","value":"Sun, 27 Aug 2023 10:17:45 GMT"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Error: 密碼與確認密碼不符合！\"\n}"}],"_postman_id":"53591c9b-0bc5-40bb-b0f8-b63b87c41ebb"},{"name":"/api/users/:userId","id":"3698f230-cb81-4f08-8f92-7cb57db4f567","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{user1_token}}"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{Heroku_URL}}/api/users/:userId","description":"<p>使用者可以查看特定使用者資料</p>\n","urlObject":{"path":["api","users",":userId"],"host":["{{Heroku_URL}}"],"query":[],"variable":[{"type":"any","value":"5","key":"userId"}]}},"response":[],"_postman_id":"3698f230-cb81-4f08-8f92-7cb57db4f567"},{"name":"/api/users/?top=","id":"35e32354-0aec-4ea9-b63d-035333a3bfc4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{user2_token}}"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"{{Heroku_URL}}/api/users/?top=10","description":"<p>使用者可以查看追蹤數前10的使用者</p>\n","urlObject":{"path":["api","users",""],"host":["{{Heroku_URL}}"],"query":[{"key":"top","value":"10"}],"variable":[]}},"response":[],"_postman_id":"35e32354-0aec-4ea9-b63d-035333a3bfc4"},{"name":"/api/users/:userId","id":"0e460d6c-1c01-46ba-a4e8-4825b884434c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{user1_token}}"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":""},"url":"{{Heroku_URL}}/api/users/:userId","description":"<p>使用者可以編輯自己的Profile</p>\n","urlObject":{"path":["api","users",":userId"],"host":["{{Heroku_URL}}"],"query":[],"variable":[{"type":"any","value":"","key":"userId"}]}},"response":[],"_postman_id":"0e460d6c-1c01-46ba-a4e8-4825b884434c"},{"name":"/api/users/:userId/tweets","id":"a1468460-5b58-409c-89ce-8f752453b8f2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{user1_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{Heroku_URL}}/api/users/:userId/tweets","urlObject":{"path":["api","users",":userId","tweets"],"host":["{{Heroku_URL}}"],"query":[],"variable":[{"type":"any","value":"2","key":"userId"}]}},"response":[],"_postman_id":"a1468460-5b58-409c-89ce-8f752453b8f2"},{"name":"/api/users/:userId/replied_tweets","id":"448bfb6a-f435-4ef3-b41d-3ea7d278d267","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{user1_token}}"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{Heroku_URL}}/api/users/:userId/replied_tweets","description":"<p>使用者可以查看特定使用者的回覆</p>\n","urlObject":{"path":["api","users",":userId","replied_tweets"],"host":["{{Heroku_URL}}"],"query":[],"variable":[{"type":"any","value":"","key":"userId"}]}},"response":[],"_postman_id":"448bfb6a-f435-4ef3-b41d-3ea7d278d267"},{"name":"/api/users/:userId/likes","id":"3536c714-e6c2-4d65-838c-4d611e95e792","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{user1_token}}"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"{{Heroku_URL}}/api/users/:userId/likes","description":"<p>使用者可以查看特定使用者喜愛過的tweets清單</p>\n","urlObject":{"path":["api","users",":userId","likes"],"host":["{{Heroku_URL}}"],"query":[],"variable":[{"type":"any","value":"2","key":"userId"}]}},"response":[],"_postman_id":"3536c714-e6c2-4d65-838c-4d611e95e792"},{"name":"/api/users/:userId/followings","id":"11701979-c15e-451b-8849-e0f9c53bada0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{user1_token}}"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"{{Heroku_URL}}/api/users/:userId/followings","description":"<p>使用者可以查看特定使用者的跟隨中的清單</p>\n","urlObject":{"path":["api","users",":userId","followings"],"host":["{{Heroku_URL}}"],"query":[],"variable":[{"type":"any","value":"2","key":"userId"}]}},"response":[],"_postman_id":"11701979-c15e-451b-8849-e0f9c53bada0"},{"name":"/api/users/:userId/followers","id":"e8efff2a-c7e7-4e57-bdbf-3e880ead573b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{user1_token}}"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"{{Heroku_URL}}/api/users/:userId/followers","description":"<p>使用者可以查看特定使用者的跟隨者清單</p>\n","urlObject":{"path":["api","users",":userId","followers"],"host":["{{Heroku_URL}}"],"query":[],"variable":[{"type":"any","value":"50","key":"userId"}]}},"response":[],"_postman_id":"e8efff2a-c7e7-4e57-bdbf-3e880ead573b"}],"id":"5b1f1a40-e71b-4d20-96b0-e7f962a9bfd8","description":"<h5 id=\"使用者相關功能\">使用者相關功能</h5>\n","_postman_id":"5b1f1a40-e71b-4d20-96b0-e7f962a9bfd8"},{"name":"Followships","item":[{"name":"/api/followships","id":"0023530d-d35c-4ead-9cea-221bf3e3dd52","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{user1_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"id\": 2\n}","options":{"raw":{"language":"json"}}},"url":"{{Heroku_URL}}/api/followships","description":"<p>使用者可以跟隨其他使用者</p>\n","urlObject":{"path":["api","followships"],"host":["{{Heroku_URL}}"],"query":[],"variable":[]}},"response":[{"id":"df740118-7769-4b20-81a6-b8030e6d358c","name":"無法跟隨自己","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"id\": 2\n}","options":{"raw":{"language":"json"}}},"url":"{{Heroku_URL}}/api/followships"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"57"},{"key":"Etag","value":"W/\"39-vMFc6es7p/9R9pwPAYUfQ6Ai9qQ\""},{"key":"Date","value":"Wed, 30 Aug 2023 15:56:38 GMT"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Error: 無法跟隨自己!\"\n}"}],"_postman_id":"0023530d-d35c-4ead-9cea-221bf3e3dd52"},{"name":"/api/followships/:userId","id":"73cbb15e-d06c-4693-8646-e300c6419e13","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{user1_token}}"}]},"isInherited":false},"method":"DELETE","header":[],"url":"{{Heroku_URL}}/api/followships/:userId","description":"<p>使用者可以取消跟隨其他使用者</p>\n","urlObject":{"path":["api","followships",":userId"],"host":["{{Heroku_URL}}"],"query":[],"variable":[{"type":"any","value":"2","key":"userId"}]}},"response":[],"_postman_id":"73cbb15e-d06c-4693-8646-e300c6419e13"}],"id":"116b40a3-ae57-4369-aba5-8b3881e78a9a","description":"<h5 id=\"跟隨相關路由\">跟隨相關路由</h5>\n","_postman_id":"116b40a3-ae57-4369-aba5-8b3881e78a9a"},{"name":"Tweets","item":[{"name":"/api/tweets","id":"74aa61d9-2398-4880-bbea-3bd6c5285576","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{user1_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{Heroku_URL}}/api/tweets","description":"<p>使用者可以查看所有tweets</p>\n","urlObject":{"path":["api","tweets"],"host":["{{Heroku_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"74aa61d9-2398-4880-bbea-3bd6c5285576"},{"name":"/api/tweets/:tweetId","id":"4006ce1f-94c7-4b87-8667-be3ade3205af","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{user1_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{Heroku_URL}}/api/tweets/:tweetId","description":"<p>使用者可以查看特定推文</p>\n","urlObject":{"path":["api","tweets",":tweetId"],"host":["{{Heroku_URL}}"],"query":[],"variable":[{"type":"any","value":"28","key":"tweetId"}]}},"response":[],"_postman_id":"4006ce1f-94c7-4b87-8667-be3ade3205af"},{"name":"/api/tweets","id":"0cf446c6-ee78-4bd8-ba0a-2305de6e47ca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":""},"url":"{{Heroku_URL}}/api/tweets","description":"<p>使用者可以新增一篇推文</p>\n","urlObject":{"path":["api","tweets"],"host":["{{Heroku_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0cf446c6-ee78-4bd8-ba0a-2305de6e47ca"},{"name":"/api/tweets/:tweetId","id":"be2141fc-3861-476a-bab7-675f64d0c9e0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{user1_token}}"}]},"isInherited":false},"method":"DELETE","header":[],"url":"{{Heroku_URL}}/api/tweets/:tweetId","description":"<p>使用者可以刪除自己發佈的推文</p>\n","urlObject":{"path":["api","tweets",":tweetId"],"host":["{{Heroku_URL}}"],"query":[],"variable":[{"type":"any","value":"","key":"tweetId"}]}},"response":[],"_postman_id":"be2141fc-3861-476a-bab7-675f64d0c9e0"},{"name":"/api/tweets/:tweetId/replies","id":"1f888f68-31b8-4675-a642-81a51b2aadf2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{user1_token}}"}]},"isInherited":false},"method":"POST","header":[],"url":"{{Heroku_URL}}/api/tweets/:tweetId/replies","description":"<p>使用者可以對推文回覆</p>\n","urlObject":{"path":["api","tweets",":tweetId","replies"],"host":["{{Heroku_URL}}"],"query":[],"variable":[{"type":"any","value":"","key":"tweetId"}]}},"response":[],"_postman_id":"1f888f68-31b8-4675-a642-81a51b2aadf2"},{"name":"/api/tweets/:tweetId/replies","id":"f36c6bea-58f4-4726-8d09-68b48ed8cb96","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"{{Heroku_URL}}/api/tweets/:tweetId/replies","description":"<p>使用者可以查看推文的所有回覆</p>\n","urlObject":{"path":["api","tweets",":tweetId","replies"],"host":["{{Heroku_URL}}"],"query":[],"variable":[{"type":"any","value":"55","key":"tweetId"}]}},"response":[],"_postman_id":"f36c6bea-58f4-4726-8d09-68b48ed8cb96"},{"name":"/api/tweets/:tweetId/like","id":"b116aaf7-524c-460f-8a9d-15f0200a90bb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{user4_token}}"}]},"isInherited":false},"method":"POST","header":[],"url":"{{Heroku_URL}}/api/tweets/:tweetId/like","description":"<p>使用者可以將推文加到喜愛清單</p>\n","urlObject":{"path":["api","tweets",":tweetId","like"],"host":["{{Heroku_URL}}"],"query":[],"variable":[{"type":"any","value":"27","key":"tweetId"}]}},"response":[],"_postman_id":"b116aaf7-524c-460f-8a9d-15f0200a90bb"},{"name":"/api/tweets/:tweetId/unlike","id":"ab0e3ccc-09b5-4d2e-85f4-adfcf39414d6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{user4_token}}"}]},"isInherited":false},"method":"POST","header":[],"url":"{{Heroku_URL}}/api/tweets/:tweetId/unlike","description":"<p>使用者可以取消對推文的喜愛</p>\n","urlObject":{"path":["api","tweets",":tweetId","unlike"],"host":["{{Heroku_URL}}"],"query":[],"variable":[{"type":"any","value":"27","key":"tweetId"}]}},"response":[],"_postman_id":"ab0e3ccc-09b5-4d2e-85f4-adfcf39414d6"}],"id":"9790453d-3e7c-4039-bcda-c973774bfdf2","description":"<h5 id=\"推文相關功能\">推文相關功能</h5>\n","_postman_id":"9790453d-3e7c-4039-bcda-c973774bfdf2"}],"id":"66b6acf0-30c0-43f0-8614-e037345e916e","description":"<h4 id=\"提供一般使用者註冊及登入平台、查看、發佈推文或回覆，亦可追隨其他使用者、點讚推文等功能\">提供一般使用者註冊及登入平台、查看、發佈推文或回覆，亦可追隨其他使用者、點讚推文等功能</h4>\n","_postman_id":"66b6acf0-30c0-43f0-8614-e037345e916e"},{"name":"後台","item":[{"name":"Users","item":[{"name":"api/admin/users","id":"4bba4552-40b9-463f-9892-f0d7181e84c6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{admin_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{Heroku_URL}}/api/admin/users","description":"<p>管理者可以看見站內所有的使用者</p>\n","urlObject":{"path":["api","admin","users"],"host":["{{Heroku_URL}}"],"query":[],"variable":[]}},"response":[{"id":"c3050e79-6e6e-416b-a83b-76f09f205701","name":"成功取得全站使用者","originalRequest":{"method":"GET","header":[],"url":"{{Heroku_URL}}/api/admin/users"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"2998"},{"key":"Etag","value":"W/\"bb6-torUaPCNlODr1H14oq5zEO6GC+Q\""},{"key":"Date","value":"Wed, 30 Aug 2023 13:38:24 GMT"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 5,\n        \"name\": \"user4\",\n        \"account\": \"user4\",\n        \"avatar\": \"https://cloudflare-ipfs.com/ipfs/Qmd3W5DuhgHirLHGVixi6V76LhCkZUz6pnFt5AJBiyvHye/avatar/530.jpg\",\n        \"cover\": \"https://i.imgur.com/xwLLnZh.png\",\n        \"role\": \"user\",\n        \"tweetsAmount\": 10,\n        \"likedAmount\": 0,\n        \"followingAmount\": 0,\n        \"followerAmount\": 0\n    },\n    {\n        \"id\": 6,\n        \"name\": \"user5\",\n        \"account\": \"user5\",\n        \"avatar\": \"https://avatars.githubusercontent.com/u/51770759\",\n        \"cover\": \"https://i.imgur.com/xwLLnZh.png\",\n        \"role\": \"user\",\n        \"tweetsAmount\": 7,\n        \"likedAmount\": 0,\n        \"followingAmount\": 0,\n        \"followerAmount\": 0\n    },\n    {\n        \"id\": 2,\n        \"name\": \"user1\",\n        \"account\": \"user1\",\n        \"avatar\": null,\n        \"cover\": null,\n        \"role\": \"user\",\n        \"tweetsAmount\": 6,\n        \"likedAmount\": 0,\n        \"followingAmount\": 0,\n        \"followerAmount\": 0\n    },\n    {\n        \"id\": 4,\n        \"name\": \"user3\",\n        \"account\": \"user3\",\n        \"avatar\": \"https://cloudflare-ipfs.com/ipfs/Qmd3W5DuhgHirLHGVixi6V76LhCkZUz6pnFt5AJBiyvHye/avatar/954.jpg\",\n        \"cover\": \"https://i.imgur.com/xwLLnZh.png\",\n        \"role\": \"user\",\n        \"tweetsAmount\": 4,\n        \"likedAmount\": 0,\n        \"followingAmount\": 0,\n        \"followerAmount\": 0\n    },\n    {\n        \"id\": 14,\n        \"name\": \"aray1\",\n        \"account\": \"aray1\",\n        \"avatar\": \"https://i.imgur.com/uSgVo9G.png\",\n        \"cover\": \"https://i.imgur.com/7uwf8kO.png\",\n        \"role\": \"user\",\n        \"tweetsAmount\": 4,\n        \"likedAmount\": 0,\n        \"followingAmount\": 0,\n        \"followerAmount\": 0\n    },\n    {\n        \"id\": 3,\n        \"name\": \"user2\",\n        \"account\": \"user2\",\n        \"avatar\": \"https://avatars.githubusercontent.com/u/47468987\",\n        \"cover\": \"https://i.imgur.com/xwLLnZh.png\",\n        \"role\": \"user\",\n        \"tweetsAmount\": 1,\n        \"likedAmount\": 0,\n        \"followingAmount\": 0,\n        \"followerAmount\": 0\n    },\n    {\n        \"id\": 7,\n        \"name\": \"try\",\n        \"account\": \"try\",\n        \"avatar\": null,\n        \"cover\": null,\n        \"role\": \"user\",\n        \"tweetsAmount\": 0,\n        \"likedAmount\": 0,\n        \"followingAmount\": 0,\n        \"followerAmount\": 0\n    },\n    {\n        \"id\": 8,\n        \"name\": \"Harry\",\n        \"account\": \"Harry\",\n        \"avatar\": null,\n        \"cover\": null,\n        \"role\": \"user\",\n        \"tweetsAmount\": 0,\n        \"likedAmount\": 0,\n        \"followingAmount\": 0,\n        \"followerAmount\": 0\n    },\n    {\n        \"id\": 9,\n        \"name\": \"tryout\",\n        \"account\": \"tryout\",\n        \"avatar\": \"https://i.imgur.com/uSgVo9G.png\",\n        \"cover\": \"https://i.imgur.com/7uwf8kO.png\",\n        \"role\": \"user\",\n        \"tweetsAmount\": 0,\n        \"likedAmount\": 0,\n        \"followingAmount\": 0,\n        \"followerAmount\": 0\n    },\n    {\n        \"id\": 10,\n        \"name\": \"tryout123\",\n        \"account\": \"tryout123\",\n        \"avatar\": \"https://i.imgur.com/uSgVo9G.png\",\n        \"cover\": \"https://i.imgur.com/7uwf8kO.png\",\n        \"role\": \"user\",\n        \"tweetsAmount\": 0,\n        \"likedAmount\": 0,\n        \"followingAmount\": 0,\n        \"followerAmount\": 0\n    },\n    {\n        \"id\": 11,\n        \"name\": \"try567\",\n        \"account\": \"try567\",\n        \"avatar\": \"https://i.imgur.com/uSgVo9G.png\",\n        \"cover\": \"https://i.imgur.com/7uwf8kO.png\",\n        \"role\": \"user\",\n        \"tweetsAmount\": 0,\n        \"likedAmount\": 0,\n        \"followingAmount\": 0,\n        \"followerAmount\": 0\n    },\n    {\n        \"id\": 12,\n        \"name\": \"try789\",\n        \"account\": \"try789\",\n        \"avatar\": \"https://i.imgur.com/uSgVo9G.png\",\n        \"cover\": \"https://i.imgur.com/7uwf8kO.png\",\n        \"role\": \"user\",\n        \"tweetsAmount\": 0,\n        \"likedAmount\": 0,\n        \"followingAmount\": 0,\n        \"followerAmount\": 0\n    },\n    {\n        \"id\": 13,\n        \"name\": \"aray\",\n        \"account\": \"aray\",\n        \"avatar\": \"https://i.imgur.com/uSgVo9G.png\",\n        \"cover\": \"https://i.imgur.com/7uwf8kO.png\",\n        \"role\": \"user\",\n        \"tweetsAmount\": 0,\n        \"likedAmount\": 0,\n        \"followingAmount\": 0,\n        \"followerAmount\": 0\n    },\n    {\n        \"id\": 1,\n        \"name\": \"root\",\n        \"account\": \"root\",\n        \"avatar\": \"https://avatars.githubusercontent.com/u/5805322\",\n        \"cover\": \"https://i.imgur.com/xwLLnZh.png\",\n        \"role\": \"admin\",\n        \"tweetsAmount\": 0,\n        \"likedAmount\": 0,\n        \"followingAmount\": 0,\n        \"followerAmount\": 0\n    }\n]"}],"_postman_id":"4bba4552-40b9-463f-9892-f0d7181e84c6"}],"id":"a11adc5f-7c14-4d65-b28e-82841ce2fd59","description":"<h5 id=\"使用者相關\">使用者相關</h5>\n","_postman_id":"a11adc5f-7c14-4d65-b28e-82841ce2fd59"},{"name":"Tweets","item":[{"name":"/api/admin/tweets/:tweetId","id":"c5222c95-163c-472d-864a-67ff3777aba1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{admin_token}}"}]},"isInherited":false},"method":"DELETE","header":[],"body":{"mode":"raw","raw":""},"url":"{{Heroku_URL}}/api/admin/tweets/:tweetId","description":"<p>管理者可以刪除使用者的推文</p>\n","urlObject":{"path":["api","admin","tweets",":tweetId"],"host":["{{Heroku_URL}}"],"query":[{"disabled":true,"key":"","value":null}],"variable":[{"type":"any","value":"","key":"tweetId"}]}},"response":[],"_postman_id":"c5222c95-163c-472d-864a-67ff3777aba1"},{"name":"/api/admin/tweets","id":"4750078d-4cd4-4004-bc4a-4f1466e3754b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{admin_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{Heroku_URL}}/api/admin/tweets","description":"<p>管理者可以查看全部的推文</p>\n","urlObject":{"path":["api","admin","tweets"],"host":["{{Heroku_URL}}"],"query":[],"variable":[]}},"response":[{"id":"785b4b56-d787-49f2-86ec-8135117b02f7","name":"成功取得全站推文","originalRequest":{"method":"GET","header":[],"url":"{{Heroku_URL}}/api/admin/tweets"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"8567"},{"key":"Etag","value":"W/\"2177-jiJrtK3sq00S2W4HYi9KvhwpzCA\""},{"key":"Date","value":"Wed, 30 Aug 2023 13:58:15 GMT"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 73,\n        \"description\": \"321\",\n        \"UserId\": 14,\n        \"createdAt\": \"23 分鐘前\",\n        \"updatedAt\": \"2023-08-30T13:34:57.000Z\",\n        \"User\": {\n            \"id\": 14,\n            \"account\": \"aray1\",\n            \"name\": \"aray1\",\n            \"avatar\": \"https://i.imgur.com/uSgVo9G.png\"\n        }\n    },\n    {\n        \"id\": 72,\n        \"description\": \"12311111111111111111111111111111111111111111111111\",\n        \"UserId\": 14,\n        \"createdAt\": \"24 分鐘前\",\n        \"updatedAt\": \"2023-08-30T13:33:53.000Z\",\n        \"User\": {\n            \"id\": 14,\n            \"account\": \"aray1\",\n            \"name\": \"aray1\",\n            \"avatar\": \"https://i.imgur.com/uSgVo9G.png\"\n        }\n    },\n    {\n        \"id\": 71,\n        \"description\": \"1203\",\n        \"UserId\": 14,\n        \"createdAt\": \"25 分鐘前\",\n        \"updatedAt\": \"2023-08-30T13:33:31.000Z\",\n        \"User\": {\n            \"id\": 14,\n            \"account\": \"aray1\",\n            \"name\": \"aray1\",\n            \"avatar\": \"https://i.imgur.com/uSgVo9G.png\"\n        }\n    },\n    {\n        \"id\": 70,\n        \"description\": \"1\",\n        \"UserId\": 14,\n        \"createdAt\": \"25 分鐘前\",\n        \"updatedAt\": \"2023-08-30T13:32:50.000Z\",\n        \"User\": {\n            \"id\": 14,\n            \"account\": \"aray1\",\n            \"name\": \"aray1\",\n            \"avatar\": \"https://i.imgur.com/uSgVo9G.png\"\n        }\n    },\n    {\n        \"id\": 69,\n        \"description\": \"哈囉 發個文\",\n        \"UserId\": 2,\n        \"createdAt\": \"2 小時前\",\n        \"updatedAt\": \"2023-08-30T12:12:10.000Z\",\n        \"User\": {\n            \"id\": 2,\n            \"account\": \"user1\",\n            \"name\": \"user1\",\n            \"avatar\": \"https://i.imgur.com/uSgVo9G.png\"\n        }\n    },\n    {\n        \"id\": 68,\n        \"description\": \"123456\",\n        \"UserId\": 3,\n        \"createdAt\": \"1 天前\",\n        \"updatedAt\": \"2023-08-29T14:39:06.000Z\",\n        \"User\": {\n            \"id\": 3,\n            \"account\": \"user2\",\n            \"name\": \"user2\",\n            \"avatar\": \"https://avatars.githubusercontent.com/u/47468987\"\n        }\n    },\n    {\n        \"id\": 67,\n        \"description\": \"颱風又不來了\",\n        \"UserId\": 2,\n        \"createdAt\": \"1 天前\",\n        \"updatedAt\": \"2023-08-29T11:51:10.000Z\",\n        \"User\": {\n            \"id\": 2,\n            \"account\": \"user1\",\n            \"name\": \"user1\",\n            \"avatar\": \"https://i.imgur.com/uSgVo9G.png\"\n        }\n    },\n    {\n        \"id\": 66,\n        \"description\": \"大頭照怎麼會跑不出來\",\n        \"UserId\": 2,\n        \"createdAt\": \"1 天前\",\n        \"updatedAt\": \"2023-08-29T11:50:46.000Z\",\n        \"User\": {\n            \"id\": 2,\n            \"account\": \"user1\",\n            \"name\": \"user1\",\n            \"avatar\": \"https://i.imgur.com/uSgVo9G.png\"\n        }\n    },\n    {\n        \"id\": 53,\n        \"description\": \"TEST\",\n        \"UserId\": 2,\n        \"createdAt\": \"2 天前\",\n        \"updatedAt\": \"2023-08-28T11:20:27.000Z\",\n        \"User\": {\n            \"id\": 2,\n            \"account\": \"user1\",\n            \"name\": \"user1\",\n            \"avatar\": \"https://i.imgur.com/uSgVo9G.png\"\n        }\n    },\n    {\n        \"id\": 52,\n        \"description\": \"今天打算幾點睡\",\n        \"UserId\": 2,\n        \"createdAt\": \"2 天前\",\n        \"updatedAt\": \"2023-08-28T11:11:55.000Z\",\n        \"User\": {\n            \"id\": 2,\n            \"account\": \"user1\",\n            \"name\": \"user1\",\n            \"avatar\": \"https://i.imgur.com/uSgVo9G.png\"\n        }\n    },\n    {\n        \"id\": 51,\n        \"description\": \"123456789\",\n        \"UserId\": 2,\n        \"createdAt\": \"2 天前\",\n        \"updatedAt\": \"2023-08-28T11:11:17.000Z\",\n        \"User\": {\n            \"id\": 2,\n            \"account\": \"user1\",\n            \"name\": \"user1\",\n            \"avatar\": \"https://i.imgur.com/uSgVo9G.png\"\n        }\n    },\n    {\n        \"id\": 43,\n        \"description\": \"今天去運動了一個小時，感覺身體很健康。\",\n        \"UserId\": 6,\n        \"createdAt\": \"3 天前\",\n        \"updatedAt\": \"2023-08-27T06:44:14.000Z\",\n        \"User\": {\n            \"id\": 6,\n            \"account\": \"user5\",\n            \"name\": \"user5\",\n            \"avatar\": \"https://avatars.githubusercontent.com/u/51770759\"\n        }\n    },\n    {\n        \"id\": 47,\n        \"description\": \"今天在家做了一頓美味的晚餐，好吃極了。\",\n        \"UserId\": 6,\n        \"createdAt\": \"3 天前\",\n        \"updatedAt\": \"2023-08-27T06:44:14.000Z\",\n        \"User\": {\n            \"id\": 6,\n            \"account\": \"user5\",\n            \"name\": \"user5\",\n            \"avatar\": \"https://avatars.githubusercontent.com/u/51770759\"\n        }\n    },\n    {\n        \"id\": 46,\n        \"description\": \"今天工作壓力有點大，需要好好休息一下。\",\n        \"UserId\": 6,\n        \"createdAt\": \"3 天前\",\n        \"updatedAt\": \"2023-08-27T06:44:14.000Z\",\n        \"User\": {\n            \"id\": 6,\n            \"account\": \"user5\",\n            \"name\": \"user5\",\n            \"avatar\": \"https://avatars.githubusercontent.com/u/51770759\"\n        }\n    },\n    {\n        \"id\": 45,\n        \"description\": \"今天跟朋友出去玩了一整天，玩得很開心。\",\n        \"UserId\": 6,\n        \"createdAt\": \"3 天前\",\n        \"updatedAt\": \"2023-08-27T06:44:14.000Z\",\n        \"User\": {\n            \"id\": 6,\n            \"account\": \"user5\",\n            \"name\": \"user5\",\n            \"avatar\": \"https://avatars.githubusercontent.com/u/51770759\"\n        }\n    },\n    {\n        \"id\": 44,\n        \"description\": \"今天又學到了新的知識，感覺很充實。\",\n        \"UserId\": 6,\n        \"createdAt\": \"3 天前\",\n        \"updatedAt\": \"2023-08-27T06:44:14.000Z\",\n        \"User\": {\n            \"id\": 6,\n            \"account\": \"user5\",\n            \"name\": \"user5\",\n            \"avatar\": \"https://avatars.githubusercontent.com/u/51770759\"\n        }\n    },\n    {\n        \"id\": 27,\n        \"description\": \"今天在家做了一頓美味的晚餐，好吃極了。\",\n        \"UserId\": 4,\n        \"createdAt\": \"3 天前\",\n        \"updatedAt\": \"2023-08-27T06:44:14.000Z\",\n        \"User\": {\n            \"id\": 4,\n            \"account\": \"user3\",\n            \"name\": \"user3\",\n            \"avatar\": \"https://cloudflare-ipfs.com/ipfs/Qmd3W5DuhgHirLHGVixi6V76LhCkZUz6pnFt5AJBiyvHye/avatar/954.jpg\"\n        }\n    },\n    {\n        \"id\": 42,\n        \"description\": \"今天早餐吃了一頓豐富的早餐，感覺精力充沛。\",\n        \"UserId\": 6,\n        \"createdAt\": \"3 天前\",\n        \"updatedAt\": \"2023-08-27T06:44:14.000Z\",\n        \"User\": {\n            \"id\": 6,\n            \"account\": \"user5\",\n            \"name\": \"user5\",\n            \"avatar\": \"https://avatars.githubusercontent.com/u/51770759\"\n        }\n    },\n    {\n        \"id\": 41,\n        \"description\": \"今天天氣真不錯，陽光明媚。\",\n        \"UserId\": 6,\n        \"createdAt\": \"3 天前\",\n        \"updatedAt\": \"2023-08-27T06:44:14.000Z\",\n        \"User\": {\n            \"id\": 6,\n            \"account\": \"user5\",\n            \"name\": \"user5\",\n            \"avatar\": \"https://avatars.githubusercontent.com/u/51770759\"\n        }\n    },\n    {\n        \"id\": 40,\n        \"description\": \"今天去圖書館借了一本新書，迫不及待要開始讀。\",\n        \"UserId\": 5,\n        \"createdAt\": \"3 天前\",\n        \"updatedAt\": \"2023-08-27T06:44:14.000Z\",\n        \"User\": {\n            \"id\": 5,\n            \"account\": \"user4\",\n            \"name\": \"user4\",\n            \"avatar\": \"https://cloudflare-ipfs.com/ipfs/Qmd3W5DuhgHirLHGVixi6V76LhCkZUz6pnFt5AJBiyvHye/avatar/530.jpg\"\n        }\n    },\n    {\n        \"id\": 39,\n        \"description\": \"今天寫了一篇有趣的部落格文章，期待大家喜歡。\",\n        \"UserId\": 5,\n        \"createdAt\": \"3 天前\",\n        \"updatedAt\": \"2023-08-27T06:44:14.000Z\",\n        \"User\": {\n            \"id\": 5,\n            \"account\": \"user4\",\n            \"name\": \"user4\",\n            \"avatar\": \"https://cloudflare-ipfs.com/ipfs/Qmd3W5DuhgHirLHGVixi6V76LhCkZUz6pnFt5AJBiyvHye/avatar/530.jpg\"\n        }\n    },\n    {\n        \"id\": 38,\n        \"description\": \"今天晚上看了一部很棒的電影，劇情非常吸引人。\",\n        \"UserId\": 5,\n        \"createdAt\": \"3 天前\",\n        \"updatedAt\": \"2023-08-27T06:44:14.000Z\",\n        \"User\": {\n            \"id\": 5,\n            \"account\": \"user4\",\n            \"name\": \"user4\",\n            \"avatar\": \"https://cloudflare-ipfs.com/ipfs/Qmd3W5DuhgHirLHGVixi6V76LhCkZUz6pnFt5AJBiyvHye/avatar/530.jpg\"\n        }\n    },\n    {\n        \"id\": 37,\n        \"description\": \"今天在家做了一頓美味的晚餐，好吃極了。\",\n        \"UserId\": 5,\n        \"createdAt\": \"3 天前\",\n        \"updatedAt\": \"2023-08-27T06:44:14.000Z\",\n        \"User\": {\n            \"id\": 5,\n            \"account\": \"user4\",\n            \"name\": \"user4\",\n            \"avatar\": \"https://cloudflare-ipfs.com/ipfs/Qmd3W5DuhgHirLHGVixi6V76LhCkZUz6pnFt5AJBiyvHye/avatar/530.jpg\"\n        }\n    },\n    {\n        \"id\": 36,\n        \"description\": \"今天工作壓力有點大，需要好好休息一下。\",\n        \"UserId\": 5,\n        \"createdAt\": \"3 天前\",\n        \"updatedAt\": \"2023-08-27T06:44:14.000Z\",\n        \"User\": {\n            \"id\": 5,\n            \"account\": \"user4\",\n            \"name\": \"user4\",\n            \"avatar\": \"https://cloudflare-ipfs.com/ipfs/Qmd3W5DuhgHirLHGVixi6V76LhCkZUz6pnFt5AJBiyvHye/avatar/530.jpg\"\n        }\n    },\n    {\n        \"id\": 35,\n        \"description\": \"今天跟朋友出去玩了一整天，玩得很開心。\",\n        \"UserId\": 5,\n        \"createdAt\": \"3 天前\",\n        \"updatedAt\": \"2023-08-27T06:44:14.000Z\",\n        \"User\": {\n            \"id\": 5,\n            \"account\": \"user4\",\n            \"name\": \"user4\",\n            \"avatar\": \"https://cloudflare-ipfs.com/ipfs/Qmd3W5DuhgHirLHGVixi6V76LhCkZUz6pnFt5AJBiyvHye/avatar/530.jpg\"\n        }\n    },\n    {\n        \"id\": 34,\n        \"description\": \"今天又學到了新的知識，感覺很充實。\",\n        \"UserId\": 5,\n        \"createdAt\": \"3 天前\",\n        \"updatedAt\": \"2023-08-27T06:44:14.000Z\",\n        \"User\": {\n            \"id\": 5,\n            \"account\": \"user4\",\n            \"name\": \"user4\",\n            \"avatar\": \"https://cloudflare-ipfs.com/ipfs/Qmd3W5DuhgHirLHGVixi6V76LhCkZUz6pnFt5AJBiyvHye/avatar/530.jpg\"\n        }\n    },\n    {\n        \"id\": 33,\n        \"description\": \"今天去運動了一個小時，感覺身體很健康。\",\n        \"UserId\": 5,\n        \"createdAt\": \"3 天前\",\n        \"updatedAt\": \"2023-08-27T06:44:14.000Z\",\n        \"User\": {\n            \"id\": 5,\n            \"account\": \"user4\",\n            \"name\": \"user4\",\n            \"avatar\": \"https://cloudflare-ipfs.com/ipfs/Qmd3W5DuhgHirLHGVixi6V76LhCkZUz6pnFt5AJBiyvHye/avatar/530.jpg\"\n        }\n    },\n    {\n        \"id\": 32,\n        \"description\": \"今天早餐吃了一頓豐富的早餐，感覺精力充沛。\",\n        \"UserId\": 5,\n        \"createdAt\": \"3 天前\",\n        \"updatedAt\": \"2023-08-27T06:44:14.000Z\",\n        \"User\": {\n            \"id\": 5,\n            \"account\": \"user4\",\n            \"name\": \"user4\",\n            \"avatar\": \"https://cloudflare-ipfs.com/ipfs/Qmd3W5DuhgHirLHGVixi6V76LhCkZUz6pnFt5AJBiyvHye/avatar/530.jpg\"\n        }\n    },\n    {\n        \"id\": 31,\n        \"description\": \"今天天氣真不錯，陽光明媚。\",\n        \"UserId\": 5,\n        \"createdAt\": \"3 天前\",\n        \"updatedAt\": \"2023-08-27T06:44:14.000Z\",\n        \"User\": {\n            \"id\": 5,\n            \"account\": \"user4\",\n            \"name\": \"user4\",\n            \"avatar\": \"https://cloudflare-ipfs.com/ipfs/Qmd3W5DuhgHirLHGVixi6V76LhCkZUz6pnFt5AJBiyvHye/avatar/530.jpg\"\n        }\n    },\n    {\n        \"id\": 30,\n        \"description\": \"今天去圖書館借了一本新書，迫不及待要開始讀。\",\n        \"UserId\": 4,\n        \"createdAt\": \"3 天前\",\n        \"updatedAt\": \"2023-08-27T06:44:14.000Z\",\n        \"User\": {\n            \"id\": 4,\n            \"account\": \"user3\",\n            \"name\": \"user3\",\n            \"avatar\": \"https://cloudflare-ipfs.com/ipfs/Qmd3W5DuhgHirLHGVixi6V76LhCkZUz6pnFt5AJBiyvHye/avatar/954.jpg\"\n        }\n    },\n    {\n        \"id\": 29,\n        \"description\": \"今天寫了一篇有趣的部落格文章，期待大家喜歡。\",\n        \"UserId\": 4,\n        \"createdAt\": \"3 天前\",\n        \"updatedAt\": \"2023-08-27T06:44:14.000Z\",\n        \"User\": {\n            \"id\": 4,\n            \"account\": \"user3\",\n            \"name\": \"user3\",\n            \"avatar\": \"https://cloudflare-ipfs.com/ipfs/Qmd3W5DuhgHirLHGVixi6V76LhCkZUz6pnFt5AJBiyvHye/avatar/954.jpg\"\n        }\n    },\n    {\n        \"id\": 28,\n        \"description\": \"今天晚上看了一部很棒的電影，劇情非常吸引人。\",\n        \"UserId\": 4,\n        \"createdAt\": \"3 天前\",\n        \"updatedAt\": \"2023-08-27T06:44:14.000Z\",\n        \"User\": {\n            \"id\": 4,\n            \"account\": \"user3\",\n            \"name\": \"user3\",\n            \"avatar\": \"https://cloudflare-ipfs.com/ipfs/Qmd3W5DuhgHirLHGVixi6V76LhCkZUz6pnFt5AJBiyvHye/avatar/954.jpg\"\n        }\n    }\n]"}],"_postman_id":"4750078d-4cd4-4004-bc4a-4f1466e3754b"}],"id":"498507be-5d27-4e3d-aa0d-af901ead6339","description":"<h5 id=\"推文相關\">推文相關</h5>\n","_postman_id":"498507be-5d27-4e3d-aa0d-af901ead6339"},{"name":"SignIn","item":[{"name":"/api/admin/signin","id":"914c2cf8-0e87-4a26-ae41-ba7e00985f82","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"account","value":"","description":"<p>admin帳號 |  string </p>\n","type":"text"},{"key":"password","value":"","description":"<p>admin密碼 |  string </p>\n","type":"text"}]},"url":"{{Heroku_URL}}/api/admin/signin","description":"<p>後台管理者可以登入</p>\n","urlObject":{"path":["api","admin","signin"],"host":["{{Heroku_URL}}"],"query":[],"variable":[]}},"response":[{"id":"1a9c7100-4071-429a-bdb5-d5bd7c000ed3","name":"/api/admin/signin","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"account\":\"root\",\r\n    \"password\":\"12345678\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{Heroku_URL}}/api/admin/signin"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"812"},{"key":"Etag","value":"W/\"32c-OBuetjrYYGaq+rXHUc4fTlsOPkE\""},{"key":"Date","value":"Sun, 27 Aug 2023 10:10:52 GMT"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwiYWNjb3VudCI6InJvb3QiLCJuYW1lIjoicm9vdCIsImVtYWlsIjoicm9vdEBleGFtcGxlLmNvbSIsImludHJvZHVjdGlvbiI6IllvbTZKckUiLCJhdmF0YXIiOiJodHRwczovL2F2YXRhcnMuZ2l0aHVidXNlcmNvbnRlbnQuY29tL3UvNTgwNTMyMiIsImNvdmVyIjoiaHR0cHM6Ly9pLmltZ3VyLmNvbS94d0xMblpoLnBuZyIsInJvbGUiOiJhZG1pbiIsImNyZWF0ZWRBdCI6IjIwMjMtMDgtMjdUMDY6NDQ6MTMuMDAwWiIsInVwZGF0ZWRBdCI6IjIwMjMtMDgtMjdUMDY6NDQ6MTMuMDAwWiIsImlhdCI6MTY5MzEzMTA1MiwiZXhwIjoxNjk1NzIzMDUyfQ.Ym7YRTmXKBF7kMFQHWozeNV-9fIsXztFVuiFI69_2FA\",\n    \"user\": {\n        \"id\": 1,\n        \"account\": \"root\",\n        \"name\": \"root\",\n        \"email\": \"root@example.com\",\n        \"introduction\": \"Yom6JrE\",\n        \"avatar\": \"https://avatars.githubusercontent.com/u/5805322\",\n        \"cover\": \"https://i.imgur.com/xwLLnZh.png\",\n        \"role\": \"admin\",\n        \"createdAt\": \"2023-08-27T06:44:13.000Z\",\n        \"updatedAt\": \"2023-08-27T06:44:13.000Z\"\n    }\n}"}],"_postman_id":"914c2cf8-0e87-4a26-ae41-ba7e00985f82"}],"id":"eb950a16-1b27-4bb1-801e-78ecab19a4ef","description":"<h5 id=\"管理者可以從後台登入頁面進入網站後台\">管理者可以從後台登入頁面進入網站後台</h5>\n","_postman_id":"eb950a16-1b27-4bb1-801e-78ecab19a4ef"}],"id":"18422ab1-2ec8-42db-a316-1cbe5c9ed129","description":"<h4 id=\"提供網站管理者瀏覽、刪除推文，查看全站使用者清單及其相關資訊\">提供網站管理者瀏覽、刪除推文，查看全站使用者清單及其相關資訊</h4>\n","_postman_id":"18422ab1-2ec8-42db-a316-1cbe5c9ed129"}],"event":[{"listen":"prerequest","script":{"id":"d58531d4-6adb-48f9-a817-50e510557273","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"654a2ce8-eacc-4c8c-a03c-ec272faf2031","type":"text/javascript","exec":[""]}}],"variable":[{"key":"url","value":"https://897d539e-c549-41a1-bb65-c85981128498.mock.pstmn.io"}]}