Commentaires
Restez organisé à l'aide des collections
Enregistrez et classez les contenus selon vos préférences.
Important : Nous cesserons de prendre en charge l'API JSON v2.0 le 30 septembre 2024.
Pour vous assurer que vos applications qui dépendent de l'API JSON 2.0 continuent de fonctionner, mettez-les à jour vers la dernière version de l'API. Pour obtenir la dernière version, utilisez les liens de la barre de navigation de gauche.
Commentaires d'une ressource Posts
Représentations d'une ressource
La ressource "Comments" contient les données d'un commentaire sur un post.
{
"kind": "blogger#comment",
"id": long,
"inReplyTo": {
"id": long
},
"post": {
"id": long
},
"blog": {
"id": long
},
"published": datetime,
"updated": datetime,
"selfLink": string,
"content": string,
"author": {
"id": string,
"displayName": string,
"url": string,
"image": {
"url": string
}
}
}
Nom de la propriété |
Valeur |
Description |
Remarques |
kind |
string |
Type de cette entrée. Toujours blogger#comment . |
|
id |
long |
Identifiant de cette ressource. |
|
post |
object |
Données sur le post contenant ce commentaire. |
|
post.id |
long |
Identifiant du post contenant ce commentaire. |
|
blog |
object |
Données sur le blog contenant ce commentaire. |
|
blog.id |
long |
Identifiant du blog contenant ce commentaire. |
|
published |
datetime |
Date et heure de publication de ce commentaire, au format RFC 3339. |
|
updated |
datetime |
Date et heure au format RFC 3339 de la dernière mise à jour de ce commentaire. |
|
selfLink |
string |
URL REST de l'API à partir de laquelle extraire cette ressource. |
|
content |
string |
Contenu réel du commentaire. Peut inclure du balisage HTML. |
|
author |
object |
Auteur de ce commentaire. |
|
author.id |
string |
Identifiant de l'auteur du commentaire. |
|
author.displayName |
string |
Nom à afficher de l'auteur du commentaire. |
|
author.url |
string |
URL de la page de profil de l'auteur du commentaire. |
|
author.image |
object |
Conteneur de l'URL de l'avatar du créateur. |
|
author.image.url |
string |
URL de l'image de l'avatar du créateur du commentaire. |
|
inReplyTo |
object |
Données sur le commentaire auquel la réponse fait référence. |
|
inReplyTo.id |
long |
Identifiant du parent de ce commentaire. |
|
Sauf indication contraire, le contenu de cette page est régi par une licence Creative Commons Attribution 4.0, et les échantillons de code sont régis par une licence Apache 2.0. Pour en savoir plus, consultez les Règles du site Google Developers. Java est une marque déposée d'Oracle et/ou de ses sociétés affiliées.
Dernière mise à jour le 2025/07/25 (UTC).
[null,null,["Dernière mise à jour le 2025/07/25 (UTC)."],[[["\u003cp\u003eSupport for the v2.0 JSON API will be discontinued on September 30th, 2024.\u003c/p\u003e\n"],["\u003cp\u003eUpdate your applications to the latest API version to ensure continued functionality.\u003c/p\u003e\n"],["\u003cp\u003eUse the \u003ccode\u003eblogger.comments.list\u003c/code\u003e method to retrieve a list of comments for a post and the \u003ccode\u003eblogger.comments.get\u003c/code\u003e method to retrieve an individual comment.\u003c/p\u003e\n"],["\u003cp\u003eThe Comments Resource provides detailed information about a comment, including its content, author, and timestamps.\u003c/p\u003e\n"]]],[],null,["# Comments\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.\nThe comments for a [Posts](/blogger/docs/2.0/json/reference/posts) Resource.\n\nMethods\n-------\n\nTo retrieve a list of comments for a post, use the [blogger.comments.list](/blogger/docs/2.0/json/reference/comments/list) method. To retrieve an individual comment, use the [blogger.comments.get](/blogger/docs/2.0/json/reference/comments/get) method.\n\n[list](/blogger/docs/2.0/json/reference/comments/list)\n: Retrieves the list of [Comments](/blogger/docs/2.0/json/reference/comments) for a [Post](/blogger/docs/2.0/json/reference/posts).\n\n[get](/blogger/docs/2.0/json/reference/comments/get)\n: Retrieves one Comments Resource by its commentId.\n\nResource Representations\n------------------------\n\nThe Comments Resource contains the data for a comment on a post.\n\n```text\n{\n \"kind\": \"blogger#comment\",\n \"id\": long,\n \"inReplyTo\": {\n \"id\": long\n },\n \"post\": {\n \"id\": long\n },\n \"blog\": {\n \"id\": long\n },\n \"published\": datetime,\n \"updated\": datetime,\n \"selfLink\": string,\n \"content\": string,\n \"author\": {\n \"id\": string,\n \"displayName\": string,\n \"url\": string,\n \"image\": {\n \"url\": string\n }\n }\n}\n```\n\n| Property Name | Value | Description | Notes |\n|----------------------|------------|-------------------------------------------------------------|-------|\n| `kind` | `string` | The kind of this entry. Always `blogger#comment`. | |\n| `id` | `long` | The identifier for this resource. | |\n| `post` | `object` | Data about the post containing this comment. | |\n| post.`id` | `long` | The identifier of the post containing this comment. | |\n| `blog` | `object` | Data about the blog containing this comment. | |\n| blog.`id` | `long` | The identifier of the blog containing this comment. | |\n| `published` | `datetime` | RFC 3339 date-time when this comment was published. | |\n| `updated` | `datetime` | RFC 3339 date-time when this comment was last updated. | |\n| `selfLink` | `string` | The API REST URL to fetch this resource from. | |\n| `content` | `string` | The actual content of the comment. May include HTML markup. | |\n| `author` | `object` | The author of this comment. | |\n| author.`id` | `string` | The identifier of the comment creator. | |\n| author.`displayName` | `string` | The comment creator's display name. | |\n| author.`url` | `string` | The URL of the comment creator's Profile page. | |\n| author.`image` | `object` | The container for the creator's avatar URL. | |\n| author.image.`url` | `string` | The URL of the comment creator's avatar image. | |\n| `inReplyTo` | `object` | Data about the comment this is in reply to. | |\n| inReplyTo.`id` | `long` | The identified of the parent of this comment. | |"]]