Skip to content
This repository has been archived by the owner on Mar 30, 2021. It is now read-only.

Latest commit

ย 

History

History
75 lines (65 loc) ยท 2 KB

blog.rst

File metadata and controls

75 lines (65 loc) ยท 2 KB

Blog API

Blog ์ •๋ณด ์กฐํšŒ

๋ธ”๋กœ๊ทธ ์ •๋ณด๋ฅผ ๋ฐ›์•„์˜ค๋Š” API์ž…๋‹ˆ๋‹ค. ํ•ด๋‹น API์— ๊ด€ํ•œ ์ •๋ณด๋Š” ๋งํฌ ๋ฅผ ํ†ตํ•ด ์‚ดํŽด๋ณด์‹ค ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค.

from pytistory import PyTistory

pytistory = PyTistory()
pytistory.configure()

response = pytistory.blog.info()

๊ฒฐ๊ณผ๊ฐ’์€ ์•„๋ž˜์ฒ˜๋Ÿผ ๋ฐ›์„ ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค.

{
  "status": "200",
  "id": "blogtest_080@hanmail.net",
  "item": [
    {
      "url": "http://oauth.tistory.com",
      "secondaryUrl": "http://",
      "nickname": "Tistory API",
      "title": "๋‚˜๋งŒ์˜ ์•ฑ, Tistory OAuth API ๋กœ ๋งŒ๋“ค์–ด๋ณด์„ธ์š”!",
      "description": "",
      "default": "Y",
      "blogIconUrl":
        "http://i1.daumcdn.net/cfs.tistory/blog/79/795307/index.gif",
      "faviconUrl":
        "http://i1.daumcdn.net/cfs.tistory/blog/79/795307/index.ico",
      "profileThumbnailImageUrl":
        "http://cfile1.uf.tistory.com/R106x0/1851DB584DAF942950AF29",
      "profileImageUrl":
        "http://cfile1.uf.tistory.com/R106x0/1851DB584DAF942950AF29",
      "statistics": {
        "post": "3",
        "comment": "0",
        "trackback": "0",
        "guestbook": "0",
        "invitation": "0"
      }
    },
    {
      "url": "http://oauth2.tistory.com",
      "secondaryUrl": "http://",
      "nickname": "Tistory API",
      "title": "๋‚˜๋งŒ์˜ ๋น„๋ฐ€ ํ™ˆ",
      "description": "",
      "default": "N",
      "blogIconUrl":
        "http://i1.daumcdn.net/cfs.tistory/blog/79/795308/index.gif",
      "faviconUrl":
        "http://i1.daumcdn.net/cfs.tistory/blog/79/795308/index.ico",
      "profileThumbnailImageUrl": "",
      "profileImageUrl": "",
      "blogId": "795308",
      "statistics": {
        "post": "0",
        "comment": "0",
        "trackback": "0",
        "guestbook": "0",
        "invitation": "0"
      }
    }
  ]
}