pantip_capturedata Documentation and API Reference

โครงการนี้ทำขึ้นมาเพื่อกรณีศึกษาเรื่อง Data Analysis ประกอบกับตัว Pantip ไม่มี API ที่สามารถเข้าไปเชื่อมต่อกับระบบตรงๆ เลยจำเป็นต้องเขียน Script มาทำการเรียกเว็บไซต์ ไม่มีเจตนาในการละเมิดลิขสิทธิ์และแสวงหาผลประโยชน์ใดๆทั้งสิ้น

เกี่ยวกับซอฟแวร์

  • พัฒนาด้วยภาษา Javascript (Node.js)
  • ใช้ Library ของ Hapi.js ในการให้บริการ API Service
  • ใช้ Library cheerio ในการเลือกใช้งาน DOM Element
  • ใช้ Library request ในการส่งคำขอไปยัง Pantip.com
  • Return ค่าต่างๆ กลับมาเป็น JSON

ความสามารถของ API

  • สามารถดึงรายชื่อห้องของ Pantip.com
  • สามารถแสดงกระทู้แนะนำ/กระทู้ที่กำลังเป็น Pantip Trend ได้
  • แสดงรายชื่อกระทู้ในห้องต่างๆได้
  • แสดงข้อมูลของกระทู้ (หัวข้อ,เนื้อหา,Tags,ผู้ตั้งกระทู้)
  • สามารถแสดงรายละเอียดของแต่ละความคิดเห็น
    ในกระทู้ได้

Repository

https://github.com/Kusumoto/pantip_capturedata

วิธีการติดตั้งและเรียกใช้งาน

  • ทำการ Clone Code จาก Repository และทำการติดตั้ง Module ที่จำเป็นต้องใช้งาน ด้วยคำสั่ง
git clone https://github.com/Kusumoto/pantip_capturedata.git
npm install
  • หลังจากนั้นสามารถเริ่มการทำงานของ Web Service ด้วยการใช้คำสั่ง
npm start

API Reference

GET /forumslist

แสดงรายชื่อห้องทั้งหมดในเว็บไซต์ Pantip.com

Request

ไม่ต้องการ Parameter ใดๆ

Response

{
   "statusCode":200,
   "result":[
      {
         "title":"ก้นครัว",
         "description":"ร้านอาหาร สูตรอาหาร อาหารคาว อาหารหวาน เบเกอรี่ ไอศกรีม",
         "link":"/forum/food"
      },
      {
         "title":"กรีนโซน",
         "description":"อนุรักษ์สิ่งแวดล้อม อนุรักษ์พลังงาน Green Living การออกแบบเพื่อสิ่งแวดล้อม ผลิตภัณฑ์รักษ์โลก เกษตรอินทรีย์",
         "link":"/forum/greenzone"
      },
      {
         "title":"กล้อง",
         "description":"กล้องถ่ายรูป กล้อง DSLR กล้องวิดีโอ เทคนิคการถ่ายรูป",
         "link":"/forum/camera"
      },
      {
         "title":"การ์ตูน",
         "description":"การ์ตูนญี่ปุ่น การ์ตูนไทย การ์ตูนฝรั่ง อนิเมะ วาดการ์ตูน ของสะสมจากการ์ตูน คอสเพลย์",
         "link":"/forum/cartoon"
      },
      {
         "title":"แกลเลอรี่",
         "description":"ภาพถ่ายบุคคล ภาพถ่ายทิวทัศน์ ภาพถ่ายมาโคร",
         "link":"/forum/gallery"
      },
      {
         "title":"ไกลบ้าน",
         "description":"เรียนต่อต่างประเทศ ทำงานต่างประเทศ วีซ่า",
         "link":"/forum/klaibann"
      },
      {
         "title":"จตุจักร",
         "description":"สัตว์เลี้ยง สุนัข แมว ต้นไม้ จัดสวน ของสะสม งานฝีมือ เกษตรกรรม",
         "link":"/forum/jatujak"
      },
      {
         "title":"เฉลิมกรุง",
         "description":"นักร้องนักดนตรี เพลง เครื่องดนตรี คอนเสิร์ต มิวสิควิดีโอ",
         "link":"/forum/chalermkrung"
      },
      {
         "title":"เฉลิมไทย",
         "description":"ภาพยนตร์ ดาราภาพยนตร์ ค่ายหนัง เทศกาลหนัง หนังสั้น",
         "link":"/forum/chalermthai"
      },
      {
         "title":"ชานเรือน",
         "description":"ครอบครัว ตั้งครรภ์ ตั้งชื่อลูก การเลี้ยงลูก การสอนลูก",
         "link":"/forum/family"
      },
      {
         "title":"ชายคา",
         "description":"บ้าน คอนโดมิเนียม ตกแต่งบ้าน เฟอร์นิเจอร์ เครื่องใช้ไฟฟ้า เครื่องครัว",
         "link":"/forum/home"
      },
      {
         "title":"ซิลิคอนวัลเลย์",
         "description":"คอมมือใหม่ อินเทอร์เน็ต ซอฟต์แวร์ ฮาร์ดแวร์ เกม เขียนโปรแกรม Gadget",
         "link":"/forum/siliconvalley"
      },
      {
         "title":"โต๊ะเครื่องแป้ง",
         "description":"เครื่องสำอาง เสริมสวย แฟชั่น เครื่องประดับ ลดความอ้วน",
         "link":"/forum/beauty"
      },
      {
         "title":"ถนนนักเขียน",
         "description":"แต่งนิยาย เรื่องสั้น กลอน นิทาน",
         "link":"/forum/writer"
      },
      {
         "title":"บลูแพลนเน็ต",
         "description":"เที่ยวไทย เที่ยวต่างประเทศ ทะเล ภูเขา เกาะ น้ำตก ดำน้ำ สายการบิน",
         "link":"/forum/blueplanet"
      },
      {
         "title":"บางขุนพรหม",
         "description":"ละคร นักแสดง ซีรี่ส์ รายการโทรทัศน์ สถานีโทรทัศน์",
         "link":"/forum/tvshow"
      },
      {
         "title":"บางรัก",
         "description":"ความรัก แต่งงาน พรีเวดดิ้ง ปัญหาชีวิตคู่",
         "link":"/forum/bangrak"
      },
      {
         "title":"พรหมชาติ",
         "description":"ดูดวง ฮวงจุ้ย ไพ่ยิปซี ทำนายฝัน พระเครื่อง",
         "link":"/forum/horoscope"
      },
      {
         "title":"พันทิป",
         "description":"ข้อเสนอแนะถึงพันทิป วิธีการใช้งานพันทิป กิจกรรมพันทิป",
         "link":"/forum/pantip"
      },
      {
         "title":"ภูมิภาค",
         "description":"ภาคเหนือ ภาคอีสาน ภาคกลาง ภาคตะวันออก ภาคตะวันตก ภาคใต้",
         "link":"/forum/region"
      },
      {
         "title":"มาบุญครอง",
         "description":"โทรศัพท์มือถือ Smartphone Tablet iOS Android",
         "link":"/forum/mbk"
      },
      {
         "title":"รวมมิตร",
         "description":"รวมกระทู้จากทุกห้อง",
         "link":"/forum"
      },
      {
         "title":"รัชดา",
         "description":"รถยนต์ มอเตอร์ไซค์ เครื่องเสียงรถยนต์ แต่งรถ การจราจร",
         "link":"/forum/ratchada"
      },
      {
         "title":"ราชดำเนิน",
         "description":"การเมือง รัฐศาสตร์ กฎหมาย สภาผู้แทน รัฐบาล ฝ่ายค้าน พรรคการเมือง",
         "link":"/forum/rajdumnern"
      },
      {
         "title":"ไร้สังกัด",
         "description":"กระทู้อื่นๆ ที่ไม่สังกัดห้องไหนเลย",
         "link":"/forum/isolate"
      },
      {
         "title":"ศาลาประชาคม",
         "description":"กฎหมาย ปัญหาสังคม ปัญหาชีวิต เศรษฐกิจ คุ้มครองผู้บริโภค",
         "link":"/forum/social"
      },
      {
         "title":"ศาสนา",
         "description":"ศาสนาพุทธ ศาสนาคริสต์ ศาสนาอิสลาม เที่ยววัด ทำบุญ",
         "link":"/forum/religious"
      },
      {
         "title":"ศุภชลาศัย",
         "description":"กีฬา ฟุตบอล บาสเกตบอล มวยสากล กอล์ฟ จักรยาน นักกีฬา",
         "link":"/forum/supachalasai"
      },
      {
         "title":"สยามสแควร์",
         "description":"ชีวิตวัยรุ่น การเรียน โรงเรียน มหาวิทยาลัย ความรักวัยรุ่น เกม",
         "link":"/forum/siam"
      },
      {
         "title":"สวนลุมพินี",
         "description":"สุขภาพกาย สุขภาพจิต โรคมะเร็ง โรคไมเกรน โรคภูมิแพ้ ปวดประจำเดือน",
         "link":"/forum/lumpini"
      },
      {
         "title":"สินธร",
         "description":"หุ้น เศรษฐกิจ การลงทุน LTF RMF ธนาคาร เงินตราต่างประเทศ",
         "link":"/forum/sinthorn"
      },
      {
         "title":"สีลม",
         "description":"การบริหารจัดการ การตลาด ทรัพยากรบุคคล งานขาย SME ภาษีนิติบุคคล",
         "link":"/forum/silom"
      },
      {
         "title":"หว้ากอ",
         "description":"วิทยาศาสตร์ วิศวกรรม เทคโนโลยี ฟิสิกส์ ดาราศาสตร์ อวกาศ",
         "link":"/forum/wahkor"
      },
      {
         "title":"ห้องสมุด",
         "description":"หนังสือ หนังสือนิยาย ภาษาไทย ภาษาจีน ภาษาอังกฤษ ปรัชญา ประวัติศาสตร์",
         "link":"/forum/library"
      },
      {
         "title":"หอศิลป์",
         "description":"ศิลปะ ภาพวาด ประวัติศาสตร์ศิลป์ สื่อประสม Graphic Design",
         "link":"/forum/art"
      }
   ]
}

GET /forum/{room_name}

แสดงกระทู้แนะนำและกระทู้ Pantip Trend ของห้องที่ต้องการ

Request

GET :
  • room_name : ชื่อของห้องเป็นภาษาอังกฤษ เช่น mbk เป็นต้น
POST :

ไม่มีการส่ง Parameter ในรูปแบบ POST

Response

{
   "statusCode":200,
   "result":{
      "forum_name":"mbk",
      "hitsTopic":[
         {
            "_id":"35179609",
            "topic_id":"35179609",
            "disp_topic":" ร้าน Doubl****t การันตีความแย่ สมคำร่ำลือ "
         },
         {
            "_id":"35185666",
            "topic_id":"35185666",
            "disp_topic":" Iphone 6s plus สีชมพู ราคาสามหมื่นลอกแต่ appale ไม่รับเคลม ผมทำผิดอะไรหรอ.... "
         },
         {
            "_id":"35183228",
            "topic_id":"35183228",
            "disp_topic":" Samsung S7 ปุ่ม home หลุดลอก ใครเป็นบ้าง "
         },
         {
            "_id":"35179557",
            "topic_id":"35179557",
            "disp_topic":" โดนซิมเพนกวิน หลอกให้มาใช้เพนกวินครับ "
         },
         {
            "_id":"35183646",
            "topic_id":"35183646",
            "disp_topic":" แบบนี้ก็มีด้วย! AIS แอบยัดโปรเสริมพิเศษเพื่อให้ย้ายค่ายไม่ผ่าน จะเลียนแบบค่ายใบพัดหรือครับ? "
         },
         {
            "_id":"35177828",
            "topic_id":"35177828",
            "disp_topic":" เพิ่งถอย s7 edge มา ร้องไห้หนักมากครับ เสียดายตังค์ "
         },
         {
            "_id":"35175165",
            "topic_id":"35175165",
            "disp_topic":" ทัวร์งาน 'Thailand Mobile Expo 2016 Hi-End' จัดเต็มทุกแบรนด์ ! "
         },
         {
            "_id":"35166279",
            "topic_id":"35166279",
            "disp_topic":" 'เอไอเอส' กร้าวชน 'กสทช.' บีบโอนย้ายเลขหมายประเคนให้ 'ทรูมูฟ' "
         },
         {
            "_id":"35167847",
            "topic_id":"35167847",
            "disp_topic":" เมื่อ Galaxy S7 ลูกรัก โดนทำร้าย..จากศูนย์เอง "
         },
         {
            "_id":"35175536",
            "topic_id":"35175536",
            "disp_topic":" ถ้าวันนี้แจก App มือถือราคา 40 บาท ให้ซื้อได้ในราคา 1 บาท อยากได้ App อะไรกันมั่ง? "
         }
      ],
      "trendTopic":{
         "related":null,
         "trend":[
            {
               "_id":"35186339",
               "topic_id":"35186339",
               "disp_topic":"อยากทราบว่า _________ ทำไม "ใหม่ ดาวิกา" เป็น Presenter OPPO แต่ยังใช้ Iphone อยู่เลยล่ะ ?????????",
               "max_trend":""
            },
            {
               "_id":"35184693",
               "topic_id":"35184693",
               "disp_topic":"ชอบโปรนี้มากๆ 99 บาท เน็ต 4 GB 15 วัน @ AIS",
               "max_trend":""
            },
            {
               "_id":"35163606",
               "topic_id":"35163606",
               "disp_topic":"WiFi Calling by TRUEMOVE-H มาแร้ววววว ใช้ได้ทุกเครื่อง ทุกยี่ห้อ",
               "max_trend":""
            },
            {
               "_id":"33768674",
               "topic_id":"33768674",
               "disp_topic":"แต่งรูปสีหวานๆแนวพาสเทลด้วยแอพ Fotor ~❤",
               "max_trend":""
            },
            {
               "_id":"35189786",
               "topic_id":"35189786",
               "disp_topic":"'หัวเว่ย' เลือกไทย เปิดสำนักงานใหญ่บุกภูมิภาค",
               "max_trend":""
            },
            {
               "_id":"35187899",
               "topic_id":"35187899",
               "disp_topic":"อยากเก็บเงินให้ได้ 20800บาท ภายในเวลา6เดือนต้องทำไงค่ะ?",
               "max_trend":""
            },
            {
               "_id":"35189751",
               "topic_id":"35189751",
               "disp_topic":"ใครดอย TRUE-T1 บ้างครับ วันนี้วันสุดท้ายแล้วนะ ทำไงดี",
               "max_trend":""
            },
            {
               "_id":"35187922",
               "topic_id":"35187922",
               "disp_topic":"ปิดท้ายงาน TME สรุปได้อะไรกลับบ้านมาบ้างครับ",
               "max_trend":""
            },
            {
               "_id":"35189378",
               "topic_id":"35189378",
               "disp_topic":"TRUE-T1 หลังจากวันนี้ไปจะทำไงครับ เจ้าสัวจะตั้งโต๊ะรับซื้อหรือเปล่า",
               "max_trend":""
            },
            {
               "_id":"35138856",
               "topic_id":"35138856",
               "disp_topic":"How to : เพิ่มความเก๋ให้ Facebook ของเรา ด้วยการโพสต์ภาพเป็นภาพจิ๊กซอว์ต่อกัน !!",
               "max_trend":"last"
            }
         ]
      }
   }
}

GET /forum

แสดงกระทู้แนะนำและกระทู้ Pantip Trend ของห้องรวมมิตร

Request

ไม่ต้องการ Parameter ใดๆ

Response

{
   "statusCode":200,
   "result":{
      "forum_name":"all",
      "hitsTopic":[
         {
            "_id":"35183332",
            "topic_id":"35183332",
            "disp_topic":" บุฟเฟ่ต์ทุเรียนอนาถา! 1คน1พลู \"สวนวิเศษ ระยอง\" "
         },
         {
            "_id":"35186681",
            "topic_id":"35186681",
            "disp_topic":" วิธีแก้แค้นแท็กซี่ที่โบกแล้วไม่ยอมไป อยากให้ทุกคนช่วยกันทำตามนี้ครับ "
         },
         {
            "_id":"35181255",
            "topic_id":"35181255",
            "disp_topic":" อะไรเป็นเหตุให้นักข่าวเงียบกับเรื่อง มิน พีชญาขนาดนี้? ความแฟร์คืออะไร? "
         },
         {
            "_id":"35186507",
            "topic_id":"35186507",
            "disp_topic":" ถึง มิน พีชญา มาดูกันว่าที่ อเมริกา หากดาราไม่เสีย ภาษี โดนโทษอาญา อะไรบ้าง กับ 15 อันดับ ดารา Hollywood ที่ หนีภาษี! "
         },
         {
            "_id":"35176797",
            "topic_id":"35176797",
            "disp_topic":" เรื่องดาราสาว ที่หอบกระเป๋าแบรนด์ดัง เข้าไทย ไปถึงไหนแล้วครับ อย่าให้เรื่องนี้ต้องเงียบ "
         },
         {
            "_id":"35185000",
            "topic_id":"35185000",
            "disp_topic":" เกี่ยวกับการปลูกป่าที่จังหวัดน่าน พี่เชอรี่ลงพื้นที่อยากให้ทุกคนได้อ่าน "
         },
         {
            "_id":"35187297",
            "topic_id":"35187297",
            "disp_topic":" แฟชั่นพรมแดง Cannes 2016 ครั้งที่ 69 ใครเกิดใครตายที่นี่ที่เดียว! "
         },
         {
            "_id":"35189851",
            "topic_id":"35189851",
            "disp_topic":" อาจารย์ชาญฤทธิ์ วงษ์ประเสริฐ ขอลาออกจากทุกตำแหน่งของสหพันธ์วอลเลย์บอลนานาชาติ (FIVB) "
         },
         {
            "_id":"35185748",
            "topic_id":"35185748",
            "disp_topic":" พอไม่มี Grab Taxi ผมต้องโบกแท็กซี่ 32 คันเพื่อกลับบ้าน "
         },
         {
            "_id":"35180896",
            "topic_id":"35180896",
            "disp_topic":" ขอตอบรวมกระทู้เดียวเลยแล้วกันนะคะ สำหรับท่านที่สงสัย \"พฤติกรรมของโค้ชอ๊อด\" ในแมตช์ WOQT  THA - JAP เซต 5 "
         }
      ],
      "trendTopic":{
         "related":null,
         "trend":[
            {
               "_id":"35186681",
               "topic_id":"35186681",
               "disp_topic":"วิธีแก้แค้นแท็กซี่ที่โบกแล้วไม่ยอมไป อยากให้ทุกคนช่วยกันทำตามนี้ครับ",
               "max_trend":""
            },
            {
               "_id":"35185097",
               "topic_id":"35185097",
               "disp_topic":"เล่าประสบการณ์จากเด็กที่ถูกรังแกที่รอเวลาที่จะเอาคืนแต่สุดท้ายก็ไม่มีโอกาสได้ทำ",
               "max_trend":""
            },
            {
               "_id":"35187309",
               "topic_id":"35187309",
               "disp_topic":"จากลดน้ำหนักวันละ 1000 แคลอรี่ สู่ 2000 แคลอรี่ พร้อมหุ่นที่ดีขึ้นและสุขภาพที่ดีกว่า",
               "max_trend":""
            },
            {
               "_id":"35189354",
               "topic_id":"35189354",
               "disp_topic":"เจ๊ม้า อรนภา โชว์เก๋า สอน ใหม่ ดาวิกา -เกล้า น้ำพราว ไม่ใช่เรื่องจริงก็นิ่งไว้",
               "max_trend":""
            },
            {
               "_id":"35186954",
               "topic_id":"35186954",
               "disp_topic":"พี่จิ๊บทำไมต้องบล็อคเฟสบุ๊ค",
               "max_trend":""
            },
            {
               "_id":"35187297",
               "topic_id":"35187297",
               "disp_topic":"แฟชั่นพรมแดง Cannes 2016 ครั้งที่ 69 ใครเกิดใครตายที่นี่ที่เดียว!",
               "max_trend":""
            },
            {
               "_id":"35183332",
               "topic_id":"35183332",
               "disp_topic":"บุฟเฟ่ต์ทุเรียนอนาถา! 1คน1พลู "สวนวิเศษ ระยอง"",
               "max_trend":""
            },
            {
               "_id":"35185748",
               "topic_id":"35185748",
               "disp_topic":"พอไม่มี Grab Taxi ผมต้องโบกแท็กซี่ 32 คันเพื่อกลับบ้าน",
               "max_trend":""
            },
            {
               "_id":"35187127",
               "topic_id":"35187127",
               "disp_topic":"ZAAP Single Festival 2016 งานดนตรีที่ห่วยสุดของปี2016 แถมผู้จัดยังนั่งไล่ลบคอมเมนท์ด้วย เลิศเนอะ!!",
               "max_trend":""
            },
            {
               "_id":"35180894",
               "topic_id":"35180894",
               "disp_topic":"7 เซียน ตำนานวอลเลย์บอลหญิงทีมชาติไทย",
               "max_trend":"last"
            }
         ]
      }
   }
}

POST /topiclist

แสดงกระทู้ของหมวดหมู่ที่ต้องการ

Request

GET :

ไม่มีการส่ง Parameter ในรูปแบบ GET

POST :
  • current_page : หน้าที่กำลังแสดงกระทู้
  • room : ห้องที่ต้องการให้แสดงกระทู้
  • default_type : รูปแบบของกระทู้ที่ต้องการแสดงผลเริ่มต้น
  • type : รูปแบบการแสดงกระทู้
  • thumbnailview : ให้มีการส่งภาพตัวอย่างมาด้วยหรือไม่

Response

{
   "statusCode":200,
   "result":{
      "topicList":{
         "item":{
            "related":[
               {
                  "name":"dtac",
                  "url":"dtac"
               },
               {
                  "name":"AIS",
                  "url":"AIS"
               },
               {
                  "name":"โทรศัพท์มือถือ",
                  "url":"โทรศัพท์มือถือ"
               },
               {
                  "name":"iPhone",
                  "url":"iPhone"
               },
               {
                  "name":"Mobile Operator",
                  "url":"Mobile_Operator"
               },
               {
                  "name":"3G",
                  "url":"3G"
               },
               {
                  "name":"truemove H",
                  "url":"truemove_H"
               },
               {
                  "name":"อินเทอร์เน็ต",
                  "url":"อินเทอร์เน็ต"
               },
               {
                  "name":"truemove",
                  "url":"truemove"
               },
               {
                  "name":"คุ้มครองผู้บริโภค",
                  "url":"คุ้มครองผู้บริโภค"
               }
            ],
            "topic":[
               {
                  "cover_img":"http://f.ptcdn.info/915/042/000/o7mo0bm9yXX72v3vF6K-s.png",
                  "_id":35191328,
                  "disp_topic":"Fast Charging ของ Samsung S7 Edge ไม่เร็ว",
                  "comments":0,
                  "votes":0,
                  "utime":"05/23/2016 18:30:17",
                  "topic_type":3,
                  "topic_class_icon":"icon-mini-posttype icon-mini-posttype-que grayscale",
                  "abbr_title":"23 พฤษภาคม 2559 เวลา  18:30:17 น.",
                  "author":"Elephish",
                  "tags":[
                     {
                        "tag":"สมาร์ทโฟน",
                        "url":"สมาร์ทโฟน",
                        "allow":false
                     },
                     {
                        "tag":"โทรศัพท์มือถือ",
                        "url":"โทรศัพท์มือถือ",
                        "allow":false
                     },
                     {
                        "tag":"Samsung Smartphone",
                        "url":"Samsung_Smartphone",
                        "allow":false
                     }
                  ]
               },
               {
                  "cover_img":"",
                  "_id":35191322,
                  "disp_topic":"True เลื่อนนัดตลอดทำยังไงดีคะ?",
                  "comments":1,
                  "votes":0,
                  "utime":"05/23/2016 18:28:58",
                  "topic_type":3,
                  "topic_class_icon":"icon-mini-posttype icon-mini-posttype-que grayscale",
                  "abbr_title":"23 พฤษภาคม 2559 เวลา  18:28:58 น.",
                  "author":"สมาชิกหมายเลข 3017442",
                  "tags":[
                     {
                        "tag":"truemove",
                        "url":"truemove",
                        "allow":false
                     },
                     {
                        "tag":"Wi-Fi",
                        "url":"Wi-Fi",
                        "allow":false
                     },
                     {
                        "tag":"อินเทอร์เน็ต",
                        "url":"อินเทอร์เน็ต",
                        "allow":false
                     }
                  ]
               },
               {
                  "cover_img":"",
                  "_id":35191309,
                  "disp_topic":"โดนเรียกเก็บค่ารายเดือน Ais ทั้งที่ยังไม่ได้แกะซิม และยังไม่ได้เปิดใช้อะไรเลย",
                  "comments":2,
                  "votes":0,
                  "utime":"05/23/2016 18:23:34",
                  "topic_type":3,
                  "topic_class_icon":"icon-mini-posttype icon-mini-posttype-que grayscale",
                  "abbr_title":"23 พฤษภาคม 2559 เวลา  18:23:34 น.",
                  "author":"สมาชิกหมายเลข 3197541",
                  "tags":[
                     {
                        "tag":"AIS",
                        "url":"AIS",
                        "allow":false
                     }
                  ]
               },
               {
                  "cover_img":"",
                  "_id":35191305,
                  "disp_topic":"ช่วยด้วยค่ะ จำรหัส pin ไม่ได้ จึง Hard reset แล้วค้างที่บัญชี google ไม่ยอมไปไหน",
                  "comments":2,
                  "votes":0,
                  "utime":"05/23/2016 18:22:13",
                  "topic_type":3,
                  "topic_class_icon":"icon-mini-posttype icon-mini-posttype-que grayscale",
                  "abbr_title":"23 พฤษภาคม 2559 เวลา  18:22:13 น.",
                  "author":"Kat_kine",
                  "tags":[
                     {
                        "tag":"Android App",
                        "url":"Android_App",
                        "allow":false
                     },
                     {
                        "tag":"Acer Smartphone",
                        "url":"Acer_Smartphone",
                        "allow":false
                     },
                     {
                        "tag":"วิศวกรรมคอมพิวเตอร์",
                        "url":"วิศวกรรมคอมพิวเตอร์",
                        "allow":false
                     },
                     {
                        "tag":"Google",
                        "url":"Google",
                        "allow":false
                     }
                  ]
               },
               {
                  "cover_img":"",
                  "_id":35191277,
                  "disp_topic":"สาวก Windows Phone คุณคิดว่าอนาคต Windows Phone จะเทพกว่าแอนดรอยด์ไหมครับ",
                  "comments":2,
                  "votes":0,
                  "utime":"05/23/2016 18:14:43",
                  "topic_type":3,
                  "topic_class_icon":"icon-mini-posttype icon-mini-posttype-que grayscale",
                  "abbr_title":"23 พฤษภาคม 2559 เวลา  18:14:43 น.",
                  "author":"PutInBlank",
                  "tags":[
                     {
                        "tag":"Windows Phone",
                        "url":"Windows_Phone",
                        "allow":false
                     },
                     {
                        "tag":"Nokia Lumia",
                        "url":"Nokia_Lumia",
                        "allow":false
                     },
                     {
                        "tag":"Microsoft",
                        "url":"Microsoft",
                        "allow":false
                     },
                     {
                        "tag":"โทรศัพท์มือถือ",
                        "url":"โทรศัพท์มือถือ",
                        "allow":false
                     },
                     {
                        "tag":"โทรศัพท์",
                        "url":"โทรศัพท์",
                        "allow":false
                     }
                  ]
               },
               {
                  "cover_img":"http://f.ptcdn.info/914/042/000/o7mmmup3sM5s90btkHO-s.jpg",
                  "_id":35191239,
                  "disp_topic":"ทำไงดีคะA8",
                  "comments":1,
                  "votes":0,
                  "utime":"05/23/2016 18:04:09",
                  "topic_type":3,
                  "topic_class_icon":"icon-mini-posttype icon-mini-posttype-que grayscale",
                  "abbr_title":"23 พฤษภาคม 2559 เวลา  18:04:09 น.",
                  "author":"สมาชิกหมายเลข 3142023",
                  "tags":[
                     {
                        "tag":"โทรศัพท์มือถือ",
                        "url":"โทรศัพท์มือถือ",
                        "allow":false
                     },
                     {
                        "tag":"Samsung Smartphone",
                        "url":"Samsung_Smartphone",
                        "allow":false
                     },
                     {
                        "tag":"Android",
                        "url":"Android",
                        "allow":false
                     }
                  ]
               },
               {
                  "cover_img":"",
                  "_id":35191238,
                  "disp_topic":"หน้าจอiphone6plusนูน แบตบวมหรืออะไร!?",
                  "comments":1,
                  "votes":0,
                  "utime":"05/23/2016 18:04:04",
                  "topic_type":3,
                  "topic_class_icon":"icon-mini-posttype icon-mini-posttype-que grayscale",
                  "abbr_title":"23 พฤษภาคม 2559 เวลา  18:04:04 น.",
                  "author":"สมาชิกหมายเลข 2815199",
                  "tags":[
                     {
                        "tag":"โทรศัพท์มือถือ",
                        "url":"โทรศัพท์มือถือ",
                        "allow":false
                     },
                     {
                        "tag":"iOS",
                        "url":"iOS",
                        "allow":false
                     },
                     {
                        "tag":"iPhone",
                        "url":"iPhone",
                        "allow":false
                     }
                  ]
               },
               {
                  "cover_img":"http://f.ptcdn.info/914/042/000/o7mmi2irnVzHk38Bz2a-s.jpg",
                  "_id":35191225,
                  "disp_topic":"Surprise วันเกิด เดือนเมษายน จาก dtac",
                  "comments":2,
                  "votes":0,
                  "utime":"05/23/2016 17:59:38",
                  "topic_type":1,
                  "topic_class_icon":"icon-mini-posttype icon-mini-posttype-chat grayscale",
                  "abbr_title":"23 พฤษภาคม 2559 เวลา  17:59:38 น.",
                  "author":"boy2546",
                  "tags":[
                     {
                        "tag":"dtac",
                        "url":"dtac",
                        "allow":false
                     }
                  ]
               },
               {
                  "cover_img":"http://f.ptcdn.info/913/042/000/o7mlp8gkwgK6WxuF9YB-s.jpg",
                  "_id":35191223,
                  "disp_topic":"เน็ตไม่ลดสปีด512Kbps  7วันแค่ 89บาท ระบบเติมเงิน",
                  "comments":3,
                  "votes":0,
                  "utime":"05/23/2016 17:59:26",
                  "topic_type":1,
                  "topic_class_icon":"icon-mini-posttype icon-mini-posttype-chat grayscale",
                  "abbr_title":"23 พฤษภาคม 2559 เวลา  17:59:26 น.",
                  "author":"จิระ-แขก",
                  "tags":[
                     {
                        "tag":"4G",
                        "url":"4G",
                        "allow":false
                     },
                     {
                        "tag":"3G",
                        "url":"3G",
                        "allow":false
                     },
                     {
                        "tag":"dtac",
                        "url":"dtac",
                        "allow":false
                     }
                  ]
               },
               {
                  "cover_img":"http://f.ptcdn.info/914/042/000/o7mlvrgtfzqANiq7KAb-s.jpg",
                  "_id":35191207,
                  "disp_topic":"AIS เปิดตัว “เน็ตหอ” เน็ตบ้านแบบเติมเงิน ให้บริการบน Pure Fibre 100% เจาะกลุ่มนักศึกษารุ่นใหม่โดยเฉพาะ",
                  "comments":2,
                  "votes":0,
                  "utime":"05/23/2016 17:54:35",
                  "topic_type":5,
                  "topic_class_icon":"icon-mini-posttype icon-mini-posttype-news grayscale",
                  "abbr_title":"23 พฤษภาคม 2559 เวลา  17:54:35 น.",
                  "author":"ค้างคาวเป็นอะไรกับปลาช่อน",
                  "tags":[
                     {
                        "tag":"AIS",
                        "url":"AIS",
                        "allow":false
                     },
                     {
                        "tag":"อินเทอร์เน็ต",
                        "url":"อินเทอร์เน็ต",
                        "allow":false
                     },
                     {
                        "tag":"ชีวิตวัยรุ่น",
                        "url":"ชีวิตวัยรุ่น",
                        "allow":false
                     }
                  ]
               },
               {
                  "cover_img":"http://f.ptcdn.info/913/042/000/o7mlsc7k12KRiTW5Uea-s.jpg",
                  "_id":35191203,
                  "disp_topic":"แต่งภาพอย่างนี้เรียกว่าอะไร และ มีวิธีแต่งอย่างไรคะ ???",
                  "comments":2,
                  "votes":0,
                  "utime":"05/23/2016 17:52:25",
                  "topic_type":3,
                  "topic_class_icon":"icon-mini-posttype icon-mini-posttype-que grayscale",
                  "abbr_title":"23 พฤษภาคม 2559 เวลา  17:52:25 น.",
                  "author":"มีมี่ สาวสวย",
                  "tags":[
                     {
                        "tag":"App แต่งภาพ",
                        "url":"App_แต่งภาพ",
                        "allow":false
                     },
                     {
                        "tag":"Adobe Photoshop",
                        "url":"Adobe_Photoshop",
                        "allow":false
                     },
                     {
                        "tag":"PhotoScape",
                        "url":"PhotoScape",
                        "allow":false
                     },
                     {
                        "tag":"การตกแต่งรูปภาพ",
                        "url":"การตกแต่งรูปภาพ",
                        "allow":false
                     }
                  ]
               },
               {
                  "cover_img":"",
                  "_id":35191200,
                  "disp_topic":"แอปใช้วาดรูปด้วย Apple Pencil บน Ipad Pro อันไหน Export ชัดแบบ Vector และปรับหัวขนาดปากกาได้คะ",
                  "comments":0,
                  "votes":0,
                  "utime":"05/23/2016 17:52:05",
                  "topic_type":1,
                  "topic_class_icon":"icon-mini-posttype icon-mini-posttype-chat grayscale",
                  "abbr_title":"23 พฤษภาคม 2559 เวลา  17:52:05 น.",
                  "author":"เคะโรโระ กบต่างดาว",
                  "tags":[
                     {
                        "tag":"iPad App",
                        "url":"iPad_App",
                        "allow":false
                     },
                     {
                        "tag":"iOS",
                        "url":"iOS",
                        "allow":false
                     },
                     {
                        "tag":"ภาพวาดลายเส้น",
                        "url":"ภาพวาดลายเส้น",
                        "allow":false
                     },
                     {
                        "tag":"iPad Pro",
                        "url":"iPad_Pro",
                        "allow":false
                     },
                     {
                        "tag":"ภาพวาดสีน้ำ",
                        "url":"ภาพวาดสีน้ำ",
                        "allow":false
                     }
                  ]
               },
               {
                  "cover_img":"",
                  "_id":35191199,
                  "disp_topic":"จะโดนค่าปรับอินเตอร์เน็ต True เพราะ ใช้โมเด็มของ True ไม่ถึง 1 ปี",
                  "comments":2,
                  "votes":0,
                  "utime":"05/23/2016 17:51:39",
                  "topic_type":3,
                  "topic_class_icon":"icon-mini-posttype icon-mini-posttype-que grayscale",
                  "abbr_title":"23 พฤษภาคม 2559 เวลา  17:51:39 น.",
                  "author":"สมาชิกหมายเลข 706839",
                  "tags":[
                     {
                        "tag":"อินเทอร์เน็ต",
                        "url":"อินเทอร์เน็ต",
                        "allow":false
                     },
                     {
                        "tag":"truemove H",
                        "url":"truemove_H",
                        "allow":false
                     },
                     {
                        "tag":"truemove",
                        "url":"truemove",
                        "allow":false
                     },
                     {
                        "tag":"ร้องทุกข์",
                        "url":"ร้องทุกข์",
                        "allow":false
                     },
                     {
                        "tag":"true online",
                        "url":"true_online",
                        "allow":false
                     }
                  ]
               },
               {
                  "cover_img":"",
                  "_id":35191185,
                  "disp_topic":"เซ็นทรัลแจ้งวัฒนะ ร้านไหนมี iPhone4s ขายบ้าง",
                  "comments":1,
                  "votes":0,
                  "utime":"05/23/2016 17:48:54",
                  "topic_type":3,
                  "topic_class_icon":"icon-mini-posttype icon-mini-posttype-que grayscale",
                  "abbr_title":"23 พฤษภาคม 2559 เวลา  17:48:54 น.",
                  "author":"ขอตอบหน่อยเหอะ!",
                  "tags":[
                     {
                        "tag":"iPhone",
                        "url":"iPhone",
                        "allow":false
                     }
                  ]
               },
               {
                  "cover_img":"",
                  "_id":35191180,
                  "disp_topic":"ใครแลกเครื่อง Happy Phone 3g รุ่น 2.8 ที่เป็นปุ่มกดบ้างคะ",
                  "comments":2,
                  "votes":0,
                  "utime":"05/23/2016 17:47:55",
                  "topic_type":1,
                  "topic_class_icon":"icon-mini-posttype icon-mini-posttype-chat grayscale",
                  "abbr_title":"23 พฤษภาคม 2559 เวลา  17:47:55 น.",
                  "author":"kratair",
                  "tags":[
                     {
                        "tag":"dtac",
                        "url":"dtac",
                        "allow":false
                     },
                     {
                        "tag":"3G",
                        "url":"3G",
                        "allow":false
                     }
                  ]
               },
               {
                  "cover_img":"http://f.ptcdn.info/913/042/000/o7mlfc4lwQ9c0f3PzTW-s.jpg",
                  "_id":35191171,
                  "disp_topic":"อยากรู้ว่าฟิลเตอร์แบบนี้ใช้แอพอะไรแต่งรูปคะ",
                  "comments":1,
                  "votes":0,
                  "utime":"05/23/2016 17:44:48",
                  "topic_type":1,
                  "topic_class_icon":"icon-mini-posttype icon-mini-posttype-chat grayscale",
                  "abbr_title":"23 พฤษภาคม 2559 เวลา  17:44:48 น.",
                  "author":"สมาชิกหมายเลข 1489778",
                  "tags":[
                     {
                        "tag":"App แต่งภาพ",
                        "url":"App_แต่งภาพ",
                        "allow":false
                     },
                     {
                        "tag":"VSCO Cam",
                        "url":"VSCO_Cam",
                        "allow":false
                     },
                     {
                        "tag":"Instagram",
                        "url":"Instagram",
                        "allow":false
                     },
                     {
                        "tag":"ภาพถ่ายจากกล้องโทรศัพท์",
                        "url":"ภาพถ่ายจากกล้องโทรศัพท์",
                        "allow":false
                     },
                     {
                        "tag":"Mobile Application",
                        "url":"Mobile_Application",
                        "allow":false
                     }
                  ]
               },
               {
                  "cover_img":"",
                  "_id":35191168,
                  "disp_topic":"LG G3 กับ Sony Xperia Z3 อันไหนดีกว่าหรอครับ",
                  "comments":1,
                  "votes":0,
                  "utime":"05/23/2016 17:43:30",
                  "topic_type":3,
                  "topic_class_icon":"icon-mini-posttype icon-mini-posttype-que grayscale",
                  "abbr_title":"23 พฤษภาคม 2559 เวลา  17:43:30 น.",
                  "author":"สมาชิกหมายเลข 1715662",
                  "tags":[
                     {
                        "tag":"LG Smartphone",
                        "url":"LG_Smartphone",
                        "allow":false
                     },
                     {
                        "tag":"Sony Xperia Z",
                        "url":"Sony_Xperia_Z",
                        "allow":false
                     },
                     {
                        "tag":"สมาร์ทโฟน",
                        "url":"สมาร์ทโฟน",
                        "allow":false
                     },
                     {
                        "tag":"Android",
                        "url":"Android",
                        "allow":false
                     },
                     {
                        "tag":"โทรศัพท์มือถือ",
                        "url":"โทรศัพท์มือถือ",
                        "allow":false
                     }
                  ]
               },
               {
                  "cover_img":"",
                  "_id":35191163,
                  "disp_topic":"Vowifi Dtac",
                  "comments":4,
                  "votes":0,
                  "utime":"05/23/2016 17:42:29",
                  "topic_type":3,
                  "topic_class_icon":"icon-mini-posttype icon-mini-posttype-que grayscale",
                  "abbr_title":"23 พฤษภาคม 2559 เวลา  17:42:29 น.",
                  "author":"สมาชิกหมายเลข 744516",
                  "tags":[
                     {
                        "tag":"3G",
                        "url":"3G",
                        "allow":false
                     },
                     {
                        "tag":"AIS",
                        "url":"AIS",
                        "allow":false
                     },
                     {
                        "tag":"dtac",
                        "url":"dtac",
                        "allow":false
                     },
                     {
                        "tag":"truemove H",
                        "url":"truemove_H",
                        "allow":false
                     }
                  ]
               },
               {
                  "cover_img":"",
                  "_id":35191150,
                  "disp_topic":"เปลี่ยนความละเอียดหน้าจอโทรศัพท์ได้ไหม..??",
                  "comments":5,
                  "votes":0,
                  "utime":"05/23/2016 17:37:57",
                  "topic_type":3,
                  "topic_class_icon":"icon-mini-posttype icon-mini-posttype-que grayscale",
                  "abbr_title":"23 พฤษภาคม 2559 เวลา  17:37:57 น.",
                  "author":"สมาชิกหมายเลข 2930106",
                  "tags":[
                     {
                        "tag":"สมาร์ทโฟน",
                        "url":"สมาร์ทโฟน",
                        "allow":false
                     },
                     {
                        "tag":"Android",
                        "url":"Android",
                        "allow":false
                     },
                     {
                        "tag":"Mobile OS",
                        "url":"Mobile_OS",
                        "allow":false
                     },
                     {
                        "tag":"โทรศัพท์",
                        "url":"โทรศัพท์",
                        "allow":false
                     }
                  ]
               },
               {
                  "cover_img":"",
                  "_id":35191133,
                  "disp_topic":"ทรูรายเดือน",
                  "comments":1,
                  "votes":0,
                  "utime":"05/23/2016 17:33:00",
                  "topic_type":3,
                  "topic_class_icon":"icon-mini-posttype icon-mini-posttype-que grayscale",
                  "abbr_title":"23 พฤษภาคม 2559 เวลา  17:33:00 น.",
                  "author":"สมาชิกหมายเลข 2938130",
                  "tags":[
                     {
                        "tag":"โทรศัพท์มือถือ",
                        "url":"โทรศัพท์มือถือ",
                        "allow":false
                     }
                  ]
               },
               {
                  "cover_img":"",
                  "_id":35191131,
                  "disp_topic":"ใครที่ใช้ dtac wifi calling ไม่ได้ ทำแบบนี้",
                  "comments":2,
                  "votes":0,
                  "utime":"05/23/2016 17:32:39",
                  "topic_type":1,
                  "topic_class_icon":"icon-mini-posttype icon-mini-posttype-chat grayscale",
                  "abbr_title":"23 พฤษภาคม 2559 เวลา  17:32:39 น.",
                  "author":"Alone EterNity",
                  "tags":[
                     {
                        "tag":"dtac",
                        "url":"dtac",
                        "allow":false
                     },
                     {
                        "tag":"iOS",
                        "url":"iOS",
                        "allow":false
                     },
                     {
                        "tag":"Mobile Operator",
                        "url":"Mobile_Operator",
                        "allow":false
                     },
                     {
                        "tag":"dtac TriNet",
                        "url":"dtac_TriNet",
                        "allow":false
                     },
                     {
                        "tag":"iPhone",
                        "url":"iPhone",
                        "allow":false
                     }
                  ]
               },
               {
                  "cover_img":"",
                  "_id":35191124,
                  "disp_topic":"AIS เรื่องที่ร้องขอให้ปรับปรุงบริการที่ปกติจะมึการติดต่อกลับแจ้งมั้ยครับ",
                  "comments":2,
                  "votes":0,
                  "utime":"05/23/2016 17:29:51",
                  "topic_type":3,
                  "topic_class_icon":"icon-mini-posttype icon-mini-posttype-que grayscale",
                  "abbr_title":"23 พฤษภาคม 2559 เวลา  17:29:51 น.",
                  "author":"Phytocosmed",
                  "tags":[
                     {
                        "tag":"AIS",
                        "url":"AIS",
                        "allow":false
                     },
                     {
                        "tag":"AIS 3G 2100",
                        "url":"AIS_3G_2100",
                        "allow":false
                     },
                     {
                        "tag":"Mobile Operator",
                        "url":"Mobile_Operator",
                        "allow":false
                     }
                  ]
               },
               {
                  "cover_img":"",
                  "_id":35191101,
                  "disp_topic":"DTAC หยุดบริการข้อความให้หน่อยครับ....",
                  "comments":2,
                  "votes":0,
                  "utime":"05/23/2016 17:25:37",
                  "topic_type":3,
                  "topic_class_icon":"icon-mini-posttype icon-mini-posttype-que grayscale",
                  "abbr_title":"23 พฤษภาคม 2559 เวลา  17:25:37 น.",
                  "author":"สมาชิกหมายเลข 1190138",
                  "tags":[
                     {
                        "tag":"dtac",
                        "url":"dtac",
                        "allow":false
                     },
                     {
                        "tag":"Mobile Operator",
                        "url":"Mobile_Operator",
                        "allow":false
                     }
                  ]
               },
               {
                  "cover_img":"http://f.ptcdn.info/913/042/000/o7mku9m7z5Q1YGLFk89-s.jpg",
                  "_id":35191095,
                  "disp_topic":"AIS สาขามาบุญครอง บริการแย่มาก ขอชมเชย AIS สาขา เอมบาสซี่",
                  "comments":1,
                  "votes":0,
                  "utime":"05/23/2016 17:23:16",
                  "topic_type":3,
                  "topic_class_icon":"icon-mini-posttype icon-mini-posttype-que grayscale",
                  "abbr_title":"23 พฤษภาคม 2559 เวลา  17:23:16 น.",
                  "author":"สมาชิกหมายเลข 2965228",
                  "tags":[
                     {
                        "tag":"AIS",
                        "url":"AIS",
                        "allow":false
                     },
                     {
                        "tag":"ธนาคารกรุงเทพ",
                        "url":"ธนาคารกรุงเทพ",
                        "allow":false
                     }
                  ]
               },
               {
                  "cover_img":"http://f.ptcdn.info/913/042/000/o7mkomsbad7Y0uD5DiQ-s.png",
                  "_id":35191091,
                  "disp_topic":"ทำไมถึงโทรในเครือข่ายไม่ได้ dtac wifi calling",
                  "comments":1,
                  "votes":0,
                  "utime":"05/23/2016 17:21:41",
                  "topic_type":3,
                  "topic_class_icon":"icon-mini-posttype icon-mini-posttype-que grayscale",
                  "abbr_title":"23 พฤษภาคม 2559 เวลา  17:21:41 น.",
                  "author":"My_FireWall",
                  "tags":[
                     {
                        "tag":"dtac",
                        "url":"dtac",
                        "allow":false
                     },
                     {
                        "tag":"dtac TriNet",
                        "url":"dtac_TriNet",
                        "allow":false
                     }
                  ]
               },
               {
                  "cover_img":"",
                  "_id":35191076,
                  "disp_topic":"จะเอาโทรศัพท์ต่อกับคอมพิวเตอร์เพื่อจะใช้งานอินเตอร์เน็ต สมัครโปรอะไรดี ??",
                  "comments":6,
                  "votes":0,
                  "utime":"05/23/2016 17:15:00",
                  "topic_type":3,
                  "topic_class_icon":"icon-mini-posttype icon-mini-posttype-que grayscale",
                  "abbr_title":"23 พฤษภาคม 2559 เวลา  17:15:00 น.",
                  "author":"สมาชิกหมายเลข 1135602",
                  "tags":[
                     {
                        "tag":"3G",
                        "url":"3G",
                        "allow":false
                     },
                     {
                        "tag":"อินเทอร์เน็ต",
                        "url":"อินเทอร์เน็ต",
                        "allow":false
                     },
                     {
                        "tag":"dtac TriNet",
                        "url":"dtac_TriNet",
                        "allow":false
                     },
                     {
                        "tag":"dtac",
                        "url":"dtac",
                        "allow":false
                     },
                     {
                        "tag":"โทรศัพท์",
                        "url":"โทรศัพท์",
                        "allow":false
                     }
                  ]
               },
               {
                  "cover_img":"",
                  "_id":35191069,
                  "disp_topic":"ทรูระงับการใช้งานเนื่องจากวันหมด ละเมิดสิทธ์รึเปล่าครับ?",
                  "comments":2,
                  "votes":0,
                  "utime":"05/23/2016 17:13:35",
                  "topic_type":3,
                  "topic_class_icon":"icon-mini-posttype icon-mini-posttype-que grayscale",
                  "abbr_title":"23 พฤษภาคม 2559 เวลา  17:13:35 น.",
                  "author":"อ้วนเตี้ยดำกรรมกรโลว์โพรไฟล์",
                  "tags":[
                     {
                        "tag":"Mobile Operator",
                        "url":"Mobile_Operator",
                        "allow":false
                     },
                     {
                        "tag":"truemove",
                        "url":"truemove",
                        "allow":false
                     },
                     {
                        "tag":"คุ้มครองผู้บริโภค",
                        "url":"คุ้มครองผู้บริโภค",
                        "allow":false
                     }
                  ]
               },
               {
                  "cover_img":"",
                  "_id":35191042,
                  "disp_topic":"แลกเครื่อง Ais",
                  "comments":1,
                  "votes":0,
                  "utime":"05/23/2016 17:05:31",
                  "topic_type":3,
                  "topic_class_icon":"icon-mini-posttype icon-mini-posttype-que grayscale",
                  "abbr_title":"23 พฤษภาคม 2559 เวลา  17:05:31 น.",
                  "author":"สมาชิกหมายเลข 3061877",
                  "tags":[
                     {
                        "tag":"AIS",
                        "url":"AIS",
                        "allow":false
                     }
                  ]
               },
               {
                  "cover_img":"",
                  "_id":35191037,
                  "disp_topic":"ระหว่าง Galaxy Tab S2  กับ Galaxy Tab A8 ควรซื้ออันไหนมากกว่าคะ",
                  "comments":1,
                  "votes":0,
                  "utime":"05/23/2016 17:03:47",
                  "topic_type":3,
                  "topic_class_icon":"icon-mini-posttype icon-mini-posttype-que grayscale",
                  "abbr_title":"23 พฤษภาคม 2559 เวลา  17:03:47 น.",
                  "author":"สมาชิกหมายเลข 1473520",
                  "tags":[
                     {
                        "tag":"โทรศัพท์มือถือ",
                        "url":"โทรศัพท์มือถือ",
                        "allow":false
                     },
                     {
                        "tag":"สมาร์ทโฟน",
                        "url":"สมาร์ทโฟน",
                        "allow":false
                     },
                     {
                        "tag":"แท็บเล็ต",
                        "url":"แท็บเล็ต",
                        "allow":false
                     }
                  ]
               },
               {
                  "cover_img":"",
                  "_id":35191022,
                  "disp_topic":"ถามเพื่อนๆที่เล่น facebook แพร่ภาพสด จำเป็นไหมคะ",
                  "comments":4,
                  "votes":0,
                  "utime":"05/23/2016 16:59:12",
                  "topic_type":3,
                  "topic_class_icon":"icon-mini-posttype icon-mini-posttype-que grayscale",
                  "abbr_title":"23 พฤษภาคม 2559 เวลา  16:59:12 น.",
                  "author":"สมาชิกหมายเลข 3197424",
                  "tags":[
                     {
                        "tag":"ชีวิตวัยรุ่น",
                        "url":"ชีวิตวัยรุ่น",
                        "allow":false
                     },
                     {
                        "tag":"Mobile Application",
                        "url":"Mobile_Application",
                        "allow":false
                     },
                     {
                        "tag":"Facebook",
                        "url":"Facebook",
                        "allow":false
                     }
                  ]
               },
               {
                  "cover_img":"",
                  "_id":35190995,
                  "disp_topic":"ซ่อมหน้าจอแตก ss galaxy s6edge+ สีทอง",
                  "comments":2,
                  "votes":0,
                  "utime":"05/23/2016 16:54:43",
                  "topic_type":3,
                  "topic_class_icon":"icon-mini-posttype icon-mini-posttype-que grayscale",
                  "abbr_title":"23 พฤษภาคม 2559 เวลา  16:54:43 น.",
                  "author":"สมาชิกหมายเลข 1904851",
                  "tags":[
                     {
                        "tag":"Samsung Smartphone",
                        "url":"Samsung_Smartphone",
                        "allow":false
                     }
                  ]
               },
               {
                  "cover_img":"http://f.ptcdn.info/912/042/000/o7mixm9eI6CoL5O3EK-s.jpg",
                  "_id":35190985,
                  "disp_topic":"iphone5 Mirroring ใน Airplay ไม่แสดงครับ",
                  "comments":1,
                  "votes":0,
                  "utime":"05/23/2016 16:50:59",
                  "topic_type":3,
                  "topic_class_icon":"icon-mini-posttype icon-mini-posttype-que grayscale",
                  "abbr_title":"23 พฤษภาคม 2559 เวลา  16:50:59 น.",
                  "author":"ดริฟท์คิงส์ขั้นเทพ",
                  "tags":[
                     {
                        "tag":"iPhone 5",
                        "url":"iPhone_5",
                        "allow":false
                     },
                     {
                        "tag":"โทรศัพท์มือถือ",
                        "url":"โทรศัพท์มือถือ",
                        "allow":false
                     },
                     {
                        "tag":"iPhone",
                        "url":"iPhone",
                        "allow":false
                     },
                     {
                        "tag":"iPhone App",
                        "url":"iPhone_App",
                        "allow":false
                     },
                     {
                        "tag":"Wi-Fi",
                        "url":"Wi-Fi",
                        "allow":false
                     }
                  ]
               },
               {
                  "cover_img":"",
                  "_id":35190981,
                  "disp_topic":"งงกับการเคลมเครื่องที่ iCare",
                  "comments":0,
                  "votes":0,
                  "utime":"05/23/2016 16:50:01",
                  "topic_type":3,
                  "topic_class_icon":"icon-mini-posttype icon-mini-posttype-que grayscale",
                  "abbr_title":"23 พฤษภาคม 2559 เวลา  16:50:01 น.",
                  "author":"สมาชิกหมายเลข 3172531",
                  "tags":[
                     {
                        "tag":"iPhone",
                        "url":"iPhone",
                        "allow":false
                     },
                     {
                        "tag":"iPhone 6s",
                        "url":"iPhone_6s",
                        "allow":false
                     },
                     {
                        "tag":"iPhone 6s Plus",
                        "url":"iPhone_6s_Plus",
                        "allow":false
                     },
                     {
                        "tag":"Apple",
                        "url":"Apple",
                        "allow":false
                     },
                     {
                        "tag":"dtac",
                        "url":"dtac",
                        "allow":false
                     }
                  ]
               },
               {
                  "cover_img":"",
                  "_id":35190966,
                  "disp_topic":"สั่งซื้อมือถือผ่าน dtac online store แต่คอนเฟิร์มสีไม่ตรงรุ่น และไม่ยอมให้เปลี่ยน ทั้งที่ยังไม่ได้รับของ",
                  "comments":2,
                  "votes":0,
                  "utime":"05/23/2016 16:45:52",
                  "topic_type":3,
                  "topic_class_icon":"icon-mini-posttype icon-mini-posttype-que grayscale",
                  "abbr_title":"23 พฤษภาคม 2559 เวลา  16:45:52 น.",
                  "author":"เท่งทึง",
                  "tags":[
                     {
                        "tag":"dtac",
                        "url":"dtac",
                        "allow":false
                     },
                     {
                        "tag":"Samsung Galaxy S6",
                        "url":"Samsung_Galaxy_S6",
                        "allow":false
                     },
                     {
                        "tag":"ธุรกรรมออนไลน์",
                        "url":"ธุรกรรมออนไลน์",
                        "allow":false
                     }
                  ]
               },
               {
                  "cover_img":"",
                  "_id":35190955,
                  "disp_topic":"ขอคำแนะนำ ชอบลำโพง Marshall แต่เลือกไม่ถูก",
                  "comments":0,
                  "votes":0,
                  "utime":"05/23/2016 16:42:06",
                  "topic_type":3,
                  "topic_class_icon":"icon-mini-posttype icon-mini-posttype-que grayscale",
                  "abbr_title":"23 พฤษภาคม 2559 เวลา  16:42:06 น.",
                  "author":"แม่โบกี้",
                  "tags":[
                     {
                        "tag":"Bluetooth",
                        "url":"Bluetooth",
                        "allow":false
                     },
                     {
                        "tag":"ลำโพง",
                        "url":"ลำโพง",
                        "allow":false
                     }
                  ]
               },
               {
                  "cover_img":"",
                  "_id":35190943,
                  "disp_topic":"โปรใหม่แพนกวิน ออกมาแบบนี้.....",
                  "comments":2,
                  "votes":0,
                  "utime":"05/23/2016 16:39:59",
                  "topic_type":1,
                  "topic_class_icon":"icon-mini-posttype icon-mini-posttype-chat grayscale",
                  "abbr_title":"23 พฤษภาคม 2559 เวลา  16:39:59 น.",
                  "author":"ทิวาในราตรี",
                  "tags":[
                     {
                        "tag":"Mobile OS",
                        "url":"Mobile_OS",
                        "allow":false
                     }
                  ]
               },
               {
                  "cover_img":"",
                  "_id":35190933,
                  "disp_topic":"TRUE-H ถูกเปลี่ยนโปรโมชั่นให้เอง มีสิทธิปฏิเสธการจ่ายบิลได้มั้ยครับ",
                  "comments":5,
                  "votes":0,
                  "utime":"05/23/2016 16:38:30",
                  "topic_type":3,
                  "topic_class_icon":"icon-mini-posttype icon-mini-posttype-que grayscale",
                  "abbr_title":"23 พฤษภาคม 2559 เวลา  16:38:30 น.",
                  "author":"Taylor168",
                  "tags":[
                     {
                        "tag":"truemove H",
                        "url":"truemove_H",
                        "allow":false
                     },
                     {
                        "tag":"truemove",
                        "url":"truemove",
                        "allow":false
                     },
                     {
                        "tag":"Mobile Operator",
                        "url":"Mobile_Operator",
                        "allow":false
                     },
                     {
                        "tag":"AIS",
                        "url":"AIS",
                        "allow":false
                     },
                     {
                        "tag":"dtac",
                        "url":"dtac",
                        "allow":false
                     }
                  ]
               },
               {
                  "cover_img":"http://f.ptcdn.info/612/038/000/nzukwl6cq4hob93LP60-s.jpg",
                  "_id":35190907,
                  "disp_topic":"Samsung Galaxy A9 Pro (2016) มีแผนขายนอกประเทศจีน",
                  "comments":0,
                  "votes":0,
                  "utime":"05/23/2016 16:30:36",
                  "topic_type":5,
                  "topic_class_icon":"icon-mini-posttype icon-mini-posttype-news grayscale",
                  "abbr_title":"23 พฤษภาคม 2559 เวลา  16:30:36 น.",
                  "author":"ผู้ค้นพบ",
                  "tags":[
                     {
                        "tag":"Samsung Smartphone",
                        "url":"Samsung_Smartphone",
                        "allow":false
                     }
                  ]
               },
               {
                  "cover_img":"",
                  "_id":35190905,
                  "disp_topic":"AIS ยังมีโปร IPHONE SE เหมือนในงาน TME อยู่ไหม",
                  "comments":1,
                  "votes":0,
                  "utime":"05/23/2016 16:30:33",
                  "topic_type":3,
                  "topic_class_icon":"icon-mini-posttype icon-mini-posttype-que grayscale",
                  "abbr_title":"23 พฤษภาคม 2559 เวลา  16:30:33 น.",
                  "author":"หล่อยันเงา",
                  "tags":[
                     {
                        "tag":"AIS",
                        "url":"AIS",
                        "allow":false
                     },
                     {
                        "tag":"iPhone",
                        "url":"iPhone",
                        "allow":false
                     }
                  ]
               },
               {
                  "cover_img":"",
                  "_id":35190902,
                  "disp_topic":"สมัครอินเตอร์เน็ตแพ็คเก็จเสริมของ True h ระบบแจ้งว่าทำรายการไม่สำเร็จให้ทำรายการใหม่ แต่กลับคิดเงิน",
                  "comments":2,
                  "votes":0,
                  "utime":"05/23/2016 16:30:05",
                  "topic_type":3,
                  "topic_class_icon":"icon-mini-posttype icon-mini-posttype-que grayscale",
                  "abbr_title":"23 พฤษภาคม 2559 เวลา  16:30:05 น.",
                  "author":"ภูเพชร",
                  "tags":[
                     {
                        "tag":"truemove",
                        "url":"truemove",
                        "allow":false
                     },
                     {
                        "tag":"truemove H",
                        "url":"truemove_H",
                        "allow":false
                     },
                     {
                        "tag":"เตือนภัย",
                        "url":"เตือนภัย",
                        "allow":false
                     },
                     {
                        "tag":"คุ้มครองผู้บริโภค",
                        "url":"คุ้มครองผู้บริโภค",
                        "allow":false
                     }
                  ]
               },
               {
                  "cover_img":"",
                  "_id":35190899,
                  "disp_topic":"มีใครเคยโดน AIS ทำแบบนี้บ้าง",
                  "comments":1,
                  "votes":0,
                  "utime":"05/23/2016 16:28:04",
                  "topic_type":3,
                  "topic_class_icon":"icon-mini-posttype icon-mini-posttype-que grayscale",
                  "abbr_title":"23 พฤษภาคม 2559 เวลา  16:28:04 น.",
                  "author":"ไก่ไข่ปั้น",
                  "tags":[
                     {
                        "tag":"Mobile Operator",
                        "url":"Mobile_Operator",
                        "allow":false
                     },
                     {
                        "tag":"AIS",
                        "url":"AIS",
                        "allow":false
                     }
                  ]
               },
               {
                  "cover_img":"",
                  "_id":35190888,
                  "disp_topic":"สอบถามเรื่องการซื้อ iphone 6s เครื่องเปล่า ไม่ติดโปรคะ",
                  "comments":3,
                  "votes":0,
                  "utime":"05/23/2016 16:25:28",
                  "topic_type":3,
                  "topic_class_icon":"icon-mini-posttype icon-mini-posttype-que grayscale",
                  "abbr_title":"23 พฤษภาคม 2559 เวลา  16:25:28 น.",
                  "author":"สมาชิกหมายเลข 3197344",
                  "tags":[
                     {
                        "tag":"iPhone",
                        "url":"iPhone",
                        "allow":false
                     },
                     {
                        "tag":"iPhone 6s",
                        "url":"iPhone_6s",
                        "allow":false
                     },
                     {
                        "tag":"truemove H",
                        "url":"truemove_H",
                        "allow":false
                     },
                     {
                        "tag":"dtac",
                        "url":"dtac",
                        "allow":false
                     },
                     {
                        "tag":"AIS",
                        "url":"AIS",
                        "allow":false
                     }
                  ]
               },
               {
                  "cover_img":"",
                  "_id":35190884,
                  "disp_topic":"ปิดเสียงชัตเตอร์ iPhone 6S plus",
                  "comments":2,
                  "votes":0,
                  "utime":"05/23/2016 16:24:28",
                  "topic_type":3,
                  "topic_class_icon":"icon-mini-posttype icon-mini-posttype-que grayscale",
                  "abbr_title":"23 พฤษภาคม 2559 เวลา  16:24:28 น.",
                  "author":"สมาชิกหมายเลข 3172959",
                  "tags":[
                     {
                        "tag":"iPhone 6s Plus",
                        "url":"iPhone_6s_Plus",
                        "allow":false
                     },
                     {
                        "tag":"iPhone App",
                        "url":"iPhone_App",
                        "allow":false
                     },
                     {
                        "tag":"iPhone",
                        "url":"iPhone",
                        "allow":false
                     }
                  ]
               },
               {
                  "cover_img":"",
                  "_id":35190867,
                  "disp_topic":"สวัสดีคะ มีข้อสงสัยจะสอบถามเกี่ยวกับการเล่น Tango app ค่ะ",
                  "comments":0,
                  "votes":0,
                  "utime":"05/23/2016 16:18:48",
                  "topic_type":3,
                  "topic_class_icon":"icon-mini-posttype icon-mini-posttype-que grayscale",
                  "abbr_title":"23 พฤษภาคม 2559 เวลา  16:18:48 น.",
                  "author":"สมาชิกหมายเลข 2041637",
                  "tags":[
                     {
                        "tag":"Mobile Application",
                        "url":"Mobile_Application",
                        "allow":false
                     }
                  ]
               },
               {
                  "cover_img":"",
                  "_id":35190855,
                  "disp_topic":"โดนขโมยเบอร์โทรศัพท์",
                  "comments":8,
                  "votes":1,
                  "utime":"05/23/2016 16:14:02",
                  "topic_type":3,
                  "topic_class_icon":"icon-mini-posttype icon-mini-posttype-que grayscale",
                  "abbr_title":"23 พฤษภาคม 2559 เวลา  16:14:02 น.",
                  "author":"สมาชิกหมายเลข 1651715",
                  "tags":[
                     {
                        "tag":"truemove H",
                        "url":"truemove_H",
                        "allow":false
                     },
                     {
                        "tag":"คุ้มครองผู้บริโภค",
                        "url":"คุ้มครองผู้บริโภค",
                        "allow":false
                     }
                  ]
               },
               {
                  "cover_img":"",
                  "_id":35190837,
                  "disp_topic":"Dtac ครับ...ชี้แจงเรื่องย้ายค่ายด้วยครับ",
                  "comments":1,
                  "votes":0,
                  "utime":"05/23/2016 16:10:21",
                  "topic_type":3,
                  "topic_class_icon":"icon-mini-posttype icon-mini-posttype-que grayscale",
                  "abbr_title":"23 พฤษภาคม 2559 เวลา  16:10:21 น.",
                  "author":"stain boy",
                  "tags":[
                     {
                        "tag":"ย้ายค่ายเบอร์เดิม",
                        "url":"ย้ายค่ายเบอร์เดิม",
                        "allow":false
                     },
                     {
                        "tag":"dtac",
                        "url":"dtac",
                        "allow":false
                     }
                  ]
               },
               {
                  "cover_img":"",
                  "_id":35190831,
                  "disp_topic":"DTAC มาด่วน",
                  "comments":1,
                  "votes":0,
                  "utime":"05/23/2016 16:09:43",
                  "topic_type":3,
                  "topic_class_icon":"icon-mini-posttype icon-mini-posttype-que grayscale",
                  "abbr_title":"23 พฤษภาคม 2559 เวลา  16:09:43 น.",
                  "author":"kikkakikpct",
                  "tags":[
                     {
                        "tag":"โทรศัพท์มือถือ",
                        "url":"โทรศัพท์มือถือ",
                        "allow":false
                     },
                     {
                        "tag":"3G",
                        "url":"3G",
                        "allow":false
                     },
                     {
                        "tag":"Bluetooth",
                        "url":"Bluetooth",
                        "allow":false
                     },
                     {
                        "tag":"Mobile Application",
                        "url":"Mobile_Application",
                        "allow":false
                     }
                  ]
               },
               {
                  "cover_img":"",
                  "_id":35190813,
                  "disp_topic":"โดนผู้ไม่หวังดี เข้ารหัสข้อมูลเกม แจ้งความเอาผิดได้มั้ยครับ",
                  "comments":2,
                  "votes":0,
                  "utime":"05/23/2016 16:03:37",
                  "topic_type":3,
                  "topic_class_icon":"icon-mini-posttype icon-mini-posttype-que grayscale",
                  "abbr_title":"23 พฤษภาคม 2559 เวลา  16:03:37 น.",
                  "author":"สมาชิกหมายเลข 1180875",
                  "tags":[
                     {
                        "tag":"กฎหมายชาวบ้าน",
                        "url":"กฎหมายชาวบ้าน",
                        "allow":false
                     },
                     {
                        "tag":"เกมบนโทรศัพท์มือถือ",
                        "url":"เกมบนโทรศัพท์มือถือ",
                        "allow":false
                     },
                     {
                        "tag":"เกมออนไลน์",
                        "url":"เกมออนไลน์",
                        "allow":false
                     }
                  ]
               },
               {
                  "cover_img":"",
                  "_id":35190803,
                  "disp_topic":"แบบนี้เครือข่ายเอาเปรียบลูกค้าไหมคะ หรือเป็นเรื่องปกติไม่ผิดอะไร",
                  "comments":4,
                  "votes":0,
                  "utime":"05/23/2016 16:00:11",
                  "topic_type":3,
                  "topic_class_icon":"icon-mini-posttype icon-mini-posttype-que grayscale",
                  "abbr_title":"23 พฤษภาคม 2559 เวลา  16:00:11 น.",
                  "author":"ILoveTheEarth",
                  "tags":[
                     {
                        "tag":"AIS",
                        "url":"AIS",
                        "allow":false
                     },
                     {
                        "tag":"ร้องทุกข์",
                        "url":"ร้องทุกข์",
                        "allow":false
                     },
                     {
                        "tag":"คุ้มครองผู้บริโภค",
                        "url":"คุ้มครองผู้บริโภค",
                        "allow":false
                     }
                  ]
               },
               {
                  "cover_img":"",
                  "_id":35190778,
                  "disp_topic":"สอบถามแพ๊คเกจ เน็ต 12call 30 วัน",
                  "comments":1,
                  "votes":0,
                  "utime":"05/23/2016 15:50:50",
                  "topic_type":3,
                  "topic_class_icon":"icon-mini-posttype icon-mini-posttype-que grayscale",
                  "abbr_title":"23 พฤษภาคม 2559 เวลา  15:50:50 น.",
                  "author":"Kloster23",
                  "tags":[
                     {
                        "tag":"3G",
                        "url":"3G",
                        "allow":false
                     },
                     {
                        "tag":"อินเทอร์เน็ต",
                        "url":"อินเทอร์เน็ต",
                        "allow":false
                     },
                     {
                        "tag":"AIS",
                        "url":"AIS",
                        "allow":false
                     },
                     {
                        "tag":"AIS 3G 2100",
                        "url":"AIS_3G_2100",
                        "allow":false
                     }
                  ]
               }
            ],
            "more":"Y",
            "last_id_current_page":35190778,
            "tagIn":[

            ],
            "tagOut":[

            ],
            "logged_in":false
         }
      }
   }
}

GET /topic/{topic_id}

แสดงเนื้อหากระทู้ที่ต้องการ

Request

GET :

topic_id : หมายเลขกระทู้

POST :

ไม่มีการส่ง Parameter ในรูปแบบ POST

Response

{
   "statusCode":200,
   "result":{
      "topic_id":"35190633",
      "topic_title":"สอบถามเรื่องย้ายค่ายจาก AIS ไป TrueMove",
      "topic_data":"\r\n                &#xE1C;&#xE21;&#xE41;&#xE08;&#xE49;&#xE07;&#xE22;&#xE49;&#xE32;&#xE22;&#xE04;&#xE48;&#xE32;&#xE22;&#xE1E;&#xE23;&#xE49;&#xE2D;&#xE21;&#xE42;&#xE1B;&#xE23; &#xE41;&#xE1E;&#xE47;&#xE01;&#xE40;&#xE01;&#xE08; 4G+ &#xE0B;&#xE39;&#xE40;&#xE1B;&#xE2D;&#xE23;&#xE4C;&#xE2A;&#xE21;&#xE32;&#xE23;&#xE4C;&#xE17; 250 &#xE1A;&#xE32;&#xE17; (&#xE42;&#xE17;&#xE23; 200 &#xE19;&#xE32;&#xE17;&#xE35;, &#xE40;&#xE19;&#xE47;&#xE15; 2GB, Free Wifi)<br>\n<br>\n&#xE17;&#xE33;&#xE40;&#xE23;&#xE37;&#xE48;&#xE2D;&#xE07;&#xE22;&#xE49;&#xE32;&#xE22;&#xE44;&#xE1B; 8 &#xE27;&#xE31;&#xE19;&#xE41;&#xE25;&#xE49;&#xE27;&#xE41;&#xE15;&#xE48;&#xE22;&#xE31;&#xE07;&#xE44;&#xE21;&#xE48;&#xE21;&#xE35;&#xE01;&#xE32;&#xE23;&#xE15;&#xE34;&#xE14;&#xE15;&#xE48;&#xE2D;&#xE01;&#xE25;&#xE31;&#xE1A;&#xE21;&#xE32;&#xE40;&#xE25;&#xE22;<br>\n&#xE23;&#xE1A;&#xE01;&#xE27;&#xE19;&#xE15;&#xE32;&#xE21;&#xE40;&#xE23;&#xE37;&#xE48;&#xE2D;&#xE07;&#xE43;&#xE2B;&#xE49;&#xE14;&#xE49;&#xE27;&#xE22;&#xE04;&#xE23;&#xE31;&#xE1A; &#xE02;&#xE2D;&#xE1A;&#xE04;&#xE38;&#xE13;&#xE04;&#xE23;&#xE31;&#xE1A;                                                              ",
      "topic_tags":[
         "AIS",
         "truemove H",
         "truemove",
         "ย้ายค่ายเบอร์เดิม"
      ]
   }
}

POST /topic/{topic_id}/comment

แสดงความคิดเห็นของกระทู้ที่ต้องการ

Request

GET :
  • topic_id : หมายเลขกระทู้
POST :
  • type : รูปแบบของการแสดง Comment
  • param : เงื่อนไขในการแสดงข้อมูลกระทู้
  • page : หน้าที่ต้องการแสดงกระทู้

Response

{
   "statusCode":200,
   "result":{
      "count":3,
      "check_pinit":"false",
      "paging":{
         "page":"1",
         "limit":100,
         "limit_reply":5,
         "limit_hybrid_reply":500,
         "defalut":3,
         "topic_id":35191223,
         "param":"",
         "type":1,
         "st":"",
         "ed":{
            "min":2,
            "max":1,
            "total":0
         },
         "parent":"",
         "expand":[

         ],
         "topic_status":1,
         "max_comments":3,
         "chk_best_answer":0,
         "author_mid":518502,
         "sess_mid":null
      },
      "comments":[
         {
            "_id":58927493,
            "comment_no":1,
            "user":{
               "mid":518502,
               "name":"จิระ-แขก",
               "link":"/profile/518502",
               "avatar":{
                  "original":"http://p.ptcdn.info/923/005/000/518502_2744505434_1_o.jpg",
                  "large":"http://p.ptcdn.info/923/005/000/518502_2744505434_1_l.jpg",
                  "medium":"http://p.ptcdn.info/923/005/000/518502_2744505434_1_m.jpg",
                  "small":"http://p.ptcdn.info/923/005/000/518502_2744505434_1_s.jpg"
               },
               "user_meta":{
                  "facebook":{
                     "id":"100000673005917",
                     "link":"https://www.facebook.com/khaek.jira",
                     "name":"Jira Khaekty"
                  },
                  "icon":{
                     "type":"mobile"
                  },
                  "user_type":"sms",
                  "verified":true
               }
            },
            "reply_count":0,
            "point":0,
            "action_id":{
               "$ref":"action",
               "$id":85651133
            },
            "message":"ได้เต็มที่กี่ GB ครับ<br />\n<br />\nFup ซ้อน Fup<br />\n<br />\n<a href=\"http://pantip.com/topic/35173114/comment1\"  rel=\"nofollow\" target=\"_blank\" >http://pantip.com/topic/35173114/comment1</a>",
            "status":1,
            "emotion":{
               "sum":0,
               "latest":[

               ],
               "like":{
                  "count":0
               },
               "laugh":{
                  "count":0
               },
               "love":{
                  "count":0
               },
               "impress":{
                  "count":0
               },
               "scary":{
                  "count":0
               },
               "surprised":{
                  "count":0
               }
            },
            "replies":[

            ],
            "last_modified":true,
            "emo_score":0,
            "good_bad_vote":{
               "good_voted":"",
               "bad_voted":"",
               "point":0,
               "class_score":""
            },
            "last_mod_iso_time":"05/23/2016 18:05:22",
            "last_modified_abbrtitle":"23 พฤษภาคม 2559 เวลา  18:05:22 น.",
            "topic_status":1,
            "email_user":false,
            "data_utime":"05/23/2016 18:04:15",
            "data_addrtitle":"23 พฤษภาคม 2559 เวลา  18:04:15 น.",
            "created_time":1464001455,
            "owner_topic":true,
            "ref_reply":"$1$LB.qoR8F$8/ty3KrzfRumA.oOIx.Ba/",
            "ref_reply_id":"58927493pantip3g",
            "ref_cmt_no_report":"cmt-1-58927493",
            "ref_cmt_report":"$1$6aTsfFgU$CSraXrzhwgO8Rfnb129/P0",
            "first_reply":1,
            "last_reply":5,
            "type":1
         },
         {
            "_id":58927560,
            "comment_no":2,
            "user":{
               "mid":63153,
               "name":"feedback@dtac.co.th",
               "link":"/profile/63153",
               "avatar":{
                  "original":"http://p.ptcdn.info/038/000/000/63153_7019584905_dtac-1_o.jpg",
                  "large":"http://p.ptcdn.info/038/000/000/63153_7019584905_dtac-1_l.jpg",
                  "medium":"http://p.ptcdn.info/038/000/000/63153_7019584905_dtac-1_m.jpg",
                  "small":"http://p.ptcdn.info/038/000/000/63153_7019584905_dtac-1_s.jpg"
               },
               "user_meta":{
                  "bloggang":{
                     "link":"http://pompam123.bloggang.com",
                     "id":"pompam123"
                  },
                  "icon":{
                     "type":"organization"
                  },
                  "user_type":"id_card",
                  "verified":true
               }
            },
            "reply_count":0,
            "point":0,
            "action_id":{
               "$ref":"action",
               "$id":85651230
            },
            "message":"<img class=\"img-in-emotion\" title=\"บะหมี่\" alt=\"บะหมี่\" src=\"http://ptcdn.info/emoticons/emoticon-noddle.png\"/> สำหรับแพ็กเกจเสริมเน็ต Non-stop ใช้ได้ต่อเนื่องความเร็ว 512Kbps ไม่ลดสปีดนาน 7 วัน​ ​(89 บ./7วัน) สามารถกดสมัครได้ผ่านหมายเลขอัตโนมัติ และบริการ dtac App​ ค่ะ<br />\n<br />\n<div style=\"text-align: center;\"><img class=\"img-in-post\" src=\"http://f.ptcdn.info/399/041/000/o4vwczybxy2eT8s4CUt-o.png\" /></div>",
            "status":1,
            "emotion":{
               "sum":0,
               "latest":[

               ],
               "like":{
                  "count":0
               },
               "laugh":{
                  "count":0
               },
               "love":{
                  "count":0
               },
               "impress":{
                  "count":0
               },
               "scary":{
                  "count":0
               },
               "surprised":{
                  "count":0
               }
            },
            "replies":[

            ],
            "emo_score":0,
            "good_bad_vote":{
               "good_voted":"",
               "bad_voted":"",
               "point":0,
               "class_score":""
            },
            "topic_status":1,
            "email_user":false,
            "data_utime":"05/23/2016 18:06:40",
            "data_addrtitle":"23 พฤษภาคม 2559 เวลา  18:06:40 น.",
            "created_time":1464001600,
            "ref_reply":"$1$D9lPO9H3$Xpq0oqPaBkociUhgmfL7l/",
            "ref_reply_id":"58927560pantip3g",
            "ref_cmt_no_report":"cmt-2-58927560",
            "ref_cmt_report":"$1$Ho3roWRj$r.P.5IjEKx0jbpNzCAo6H/",
            "first_reply":1,
            "last_reply":5,
            "type":1
         },
         {
            "_id":58927888,
            "comment_no":3,
            "user":{
               "mid":817246,
               "name":"สมาชิกหมายเลข 817246",
               "link":"/profile/817246",
               "avatar":{
                  "large":"/images/unknown-avatar-128x128.png",
                  "medium":"/images/unknown-avatar-38x38.png",
                  "small":"/images/unknown-avatar-22x22.png"
               },
               "user_meta":{
                  "icon":{
                     "type":"smile"
                  },
                  "other":{
                     "id":"",
                     "link":""
                  },
                  "user_type":"id_card",
                  "verified":true,
                  "facebook":{
                     "id":"1035518583136181",
                     "name":"HPhan Junlueng",
                     "link":"https://www.facebook.com/app_scoped_user_id/1035518583136181/"
                  }
               }
            },
            "reply_count":0,
            "point":0,
            "action_id":{
               "$ref":"action",
               "$id":85651776
            },
            "message":"เป็นค่ายแรกที่ทำ เน็ตความเร็วต่ำมี Fup<br />\nสุดท้ายคงต้องยอมค่ายอื่นเขา",
            "status":1,
            "emotion":{
               "sum":0,
               "latest":[

               ],
               "like":{
                  "count":0
               },
               "laugh":{
                  "count":0
               },
               "love":{
                  "count":0
               },
               "impress":{
                  "count":0
               },
               "scary":{
                  "count":0
               },
               "surprised":{
                  "count":0
               }
            },
            "replies":[

            ],
            "emo_score":0,
            "good_bad_vote":{
               "good_voted":"",
               "bad_voted":"",
               "point":0,
               "class_score":""
            },
            "topic_status":1,
            "email_user":false,
            "data_utime":"05/23/2016 18:18:36",
            "data_addrtitle":"23 พฤษภาคม 2559 เวลา  18:18:36 น.",
            "created_time":1464002316,
            "ref_reply":"$1$yfl93XMM$ieC/i9hQt5bZJyPnVhrlN.",
            "ref_reply_id":"58927888pantip3g",
            "ref_cmt_no_report":"cmt-3-58927888",
            "ref_cmt_report":"$1$7/QsqCXE$zxZSigf/URTjHLCDi4iSn.",
            "first_reply":1,
            "last_reply":5,
            "type":1
         }
      ]
   }
}