블로그
컬렉션을 사용해 정리하기
내 환경설정을 기준으로 콘텐츠를 저장하고 분류하세요.
중요: v2.0 JSON API 지원은 2024년 9월 30일에 중단됩니다.
기능을 계속 사용하려면 v2.0 JSON API를 사용하는 애플리케이션을 최신 API 버전으로 업데이트하세요. 최신 버전의 경우 왼쪽 탐색 메뉴의 링크를 사용하세요.
블로그는 Blogger API의 루트 데이터 클래스입니다. 각 블로그에는 일련의 게시물 및 페이지가 있으며, 각 게시물에는 일련의 댓글이 있습니다.
리소스 표현
블로그 리소스에는 블로그의 모든 메타데이터와 게시물 및 페이지 하위 요소 수가 포함됩니다.
{
"kind": "blogger#blog",
"id": value,
"name": value,
"description": value,
"published": value,
"updated": value,
"url": value,
"selfLink": value,
"posts": {
"totalItems": value,
"selfLink": value
},
"pages": {
"totalItems": value,
"selfLink": value
},
"locale": {
"language": value,
"country": value,
"variant": value
}
}
속성 이름 |
값 |
설명 |
참고 |
kind |
string |
이 항목의 종류입니다. 항상 blogger#blog 입니다. |
|
id |
long |
이 리소스의 식별자입니다. |
|
name |
string |
이 블로그의 이름입니다. 일반적으로 Blogger에 블로그 제목으로 표시됩니다. HTML을 포함할 수 있습니다. |
|
description |
string |
이 블로그에 대한 설명입니다. 일반적으로 Blogger에서 블로그 제목 아래에 표시됩니다. HTML을 포함할 수 있습니다. |
|
published |
datetime |
이 블로그가 게시된 RFC 3339 날짜/시간입니다. |
|
updated |
datetime |
이 블로그가 마지막으로 업데이트된 RFC 3339 날짜/시간입니다. |
|
url |
string |
이 블로그가 게시된 URL입니다. |
|
selfLink |
string |
이 리소스를 가져올 API REST URL입니다. |
|
posts |
object |
이 블로그 게시물의 컨테이너입니다. |
|
posts.totalItems |
integer |
이 블로그의 총 게시물 수입니다. |
|
posts.selfLink |
string |
이 블로그의 게시물 모음의 URL입니다. |
|
pages |
object |
이 블로그 페이지의 컨테이너입니다. |
|
pages.totalItems |
integer |
이 블로그의 총 페이지 수입니다. |
|
pages.selfLink |
string |
이 블로그의 페이지 모음의 URL입니다. |
|
locale |
object |
블로그의 언어입니다. |
|
locale.language |
string |
이 블로그의 작성 언어입니다. |
|
locale.country |
string |
이 블로그의 언어 설정이 적용된 국가입니다. |
|
locale.variant |
string |
이 블로그가 작성된 언어 변형입니다. |
|
달리 명시되지 않는 한 이 페이지의 콘텐츠에는 Creative Commons Attribution 4.0 라이선스에 따라 라이선스가 부여되며, 코드 샘플에는 Apache 2.0 라이선스에 따라 라이선스가 부여됩니다. 자세한 내용은 Google Developers 사이트 정책을 참조하세요. 자바는 Oracle 및/또는 Oracle 계열사의 등록 상표입니다.
최종 업데이트: 2025-07-25(UTC)
[null,null,["최종 업데이트: 2025-07-25(UTC)"],[[["\u003cp\u003eThe v2.0 JSON API will be discontinued on September 30th, 2024, and users should update to the latest API version for continued functionality.\u003c/p\u003e\n"],["\u003cp\u003eA Blog is the primary data structure containing Posts, Pages, and Comments, accessible through the Blogger API.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003eblogger.blogs.get\u003c/code\u003e method allows retrieval of individual Blog resources by their unique ID.\u003c/p\u003e\n"],["\u003cp\u003eEach Blog resource includes metadata like name, description, publication date, update date, URL, and counts of posts and pages.\u003c/p\u003e\n"],["\u003cp\u003eDetailed properties of a Blog resource, such as ID, name, description, publication and update timestamps, URL, and locale information, are available within the JSON response.\u003c/p\u003e\n"]]],[],null,["# Blogs\n\n**Important**:\nWe will discontinue support for the v2.0 JSON API on September 30th, 2024.\nTo ensure continued functionality, update your applications that rely on the v2.0 JSON API\nto the latest API version. For the latest version, use the links in the left-side navbar.\nA Blog is the root data class for the Blogger API. Each blog has a series of [Posts](/blogger/docs/2.0/json/reference/posts) and [Pages](/blogger/docs/2.0/json/reference/pages), and each Post has a series of [Comments](/blogger/docs/2.0/json/reference/comments).\n\nMethods\n-------\n\nTo retrieve an individual [Blogs](/blogger/docs/2.0/json/reference/blogs#resource) Resource, use the [blogger.blogs.get](/blogger/docs/2.0/json/reference/blogs/get) method.\n\n[get](/blogger/docs/2.0/json/reference/blogs/get)\n: Gets one blog by id.\n\nResource Representations\n------------------------\n\nA Blogs Resource contains all the metadata for a blog, along with the counts of [Posts](/blogger/docs/2.0/json/reference/posts) and [Pages](/blogger/docs/2.0/json/reference/pages) children.\n\n```gdscript\n{\n \"kind\": \"blogger#blog\",\n \"id\": value,\n \"name\": value,\n \"description\": value,\n \"published\": value,\n \"updated\": value,\n \"url\": value,\n \"selfLink\": value,\n \"posts\": {\n \"totalItems\": value,\n \"selfLink\": value\n },\n \"pages\": {\n \"totalItems\": value,\n \"selfLink\": value\n },\n \"locale\": {\n \"language\": value,\n \"country\": value,\n \"variant\": value\n }\n}\n```\n\n| Property Name | Value | Description | Notes |\n|--------------------|------------|-------------------------------------------------------------------------------------------------------------------|-------|\n| `kind` | `string` | The kind of this entry. Always `blogger#blog`. | |\n| `id` | `long` | The identifier for this resource. | |\n| `name` | `string` | The name of this blog. This is usually displayed in Blogger as the blog's title. May include HTML. | |\n| `description` | `string` | The description of this blog. This is usually displayed in Blogger underneath the blog's title. May include HTML. | |\n| `published` | `datetime` | RFC 3339 date-time when this blog was published. | |\n| `updated` | `datetime` | RFC 3339 date-time when this blog was last updated. | |\n| `url` | `string` | The URL where this blog is published. | |\n| `selfLink` | `string` | The API REST URL to fetch this resource from. | |\n| `posts` | `object` | The container for this blog's posts. | |\n| posts.`totalItems` | `integer` | The total number of posts on this blog. | |\n| posts.`selfLink` | `string` | The URL of the Posts Collection for this blog. | |\n| `pages` | `object` | The container for this blog's pages. | |\n| pages.`totalItems` | `integer` | The total number of pages for this blog. | |\n| pages.`selfLink` | `string` | The URL of the Pages collection for this blog. | |\n| `locale` | `object` | The locale this blog is set to. | |\n| locale.`language` | `string` | The language this blog is authored in. | |\n| locale.`country` | `string` | The country this blog's locale is set to. | |\n| locale.`variant` | `string` | The language variant this blog is authored in. | |"]]