JKL

Update_Club_Information

Showing 1 changed file with 44 additions and 0 deletions
...@@ -65,6 +65,50 @@ app.post('/message', (req, res) => { ...@@ -65,6 +65,50 @@ app.post('/message', (req, res) => {
65 } 65 }
66 } 66 }
67 67
68 + //동아리 정보 보기
69 + if(question== "바운스" || question == "bounce"){
70 + data = {
71 + "version": "2.0",
72 + "template": {
73 + "outputs": [
74 + {
75 + "listCard": {
76 + "header": {
77 + "title": "BOUNCE"
78 + },
79 + "items": [
80 + {
81 + "title": "Instagram",
82 + "description": "인스타그램으로 이동",
83 + "imageUrl": "https://cdn-icons.flaticon.com/png/128/3955/premium/3955024.png?token=exp=1638459829~hmac=5fedfb0e259d3541fa15144c8329704c",
84 + "link": {
85 + "web": "https://www.instagram.com/official_bnc/"
86 + }
87 + },
88 + {
89 + "title": "Facebook",
90 + "description": "페이스북으로 이동",
91 + "imageUrl": "https://cdn-icons-png.flaticon.com/128/145/145802.png",
92 + "link": {
93 + "web": "https://m.facebook.com/khubounce"
94 + }
95 + },
96 + {
97 + "title": "Youtube",
98 + "description": "유튜브로 이동",
99 + "imageUrl": "https://cdn-icons-png.flaticon.com/128/187/187209.png",
100 + "link": {
101 + "web": "https://m.youtube.com/channel/UCdqjjUiX3nTsr0neeC1ovvw"
102 + }
103 + }
104 + ]
105 + }
106 + }
107 + ]
108 + }
109 + }
110 + }
111 +
68 //학식 112 //학식
69 if (question == "서울캠퍼스") { 113 if (question == "서울캠퍼스") {
70 data = { 114 data = {
......