How to make comment in JSON file. GitHub Gist: instantly share code, notes, and snippets. ... <看更多>
「json comment」的推薦目錄:
- 關於json comment 在 Can comments be used in JSON? - Stack Overflow 的評價
- 關於json comment 在 How to make comment in JSON file - gists · GitHub 的評價
- 關於json comment 在 Add comments to JSON body in Postman - YouTube 的評價
- 關於json comment 在 Hjson, a user interface for JSON 的評價
- 關於json comment 在 Comments | YouTube Data API | Google Developers 的評價
- 關於json comment 在 Manage JSON (comments) with org literate programming and ... 的評價
json comment 在 Hjson, a user interface for JSON 的推薦與評價
Hjson, a user interface for JSON. Adds comments, makes it nicer to read and avoids comma mistakes. ... <看更多>
json comment 在 Comments | YouTube Data API | Google Developers 的推薦與評價
A comment
resource contains information about a single YouTube comment. A comment
resource can represent a comment about either a video or a channel. In addition, the comment could be a top-level comment or a reply to a top-level comment.
Methods
The API supports the following methods for comments
resources:
Returns a list of comments that match the API request parameters.
Try it now. insert
Creates a reply to an existing comment. Note: To create a top-level comment, use the
commentThreads.insert
method.Try it now. update
Modifies a comment.
Try it now. delete
Deletes a comment.
Try it now. setModerationStatus
Sets the moderation status of one or more comments. The API request must be authorized by the owner of the channel or video associated with the comments.
Try it now. markAsSpam
Note: This method has been deprecated and is no longer
supported.
Expresses the caller's opinion that one or more comments should be flagged as spam.
Resource representation
The following JSON structure shows the format of a comments
resource:
{
"kind": "youtube#comment",
"etag": etag,
"id": string,
"snippet": {
"authorDisplayName": string,
"authorProfileImageUrl": string,
"authorChannelUrl": string,
"authorChannelId": {
"value": string
},
"channelId": string,
"textDisplay": string,
"textOriginal": string,
"parentId": string,
"canRate": boolean,
"viewerRating": string,
"likeCount": unsigned integer,
"moderationStatus": string,
"publishedAt": datetime,
"updatedAt": datetime
}
}
Properties
The following table defines the properties that appear in this resource:
Properties
kind
string
Identifies the API resource's type. The value will be
youtube#comment
.etag
etag
The Etag of this resource.
id
string
The ID that YouTube uses to uniquely identify the comment.
snippet
object
The
snippet
object contains basic details about the comment.snippet.authorDisplayName
string
The display name of the user who posted the comment.
snippet.authorProfileImageUrl
string
The URL for the avatar of the user who posted the comment.
snippet.authorChannelUrl
string
The URL of the comment author's YouTube channel, if available.
snippet.authorChannelId
object
This object encapsulates information about the comment author's YouTube channel, if available.
snippet.authorChannelId.value
string
The ID of the comment author's YouTube channel, if available.
snippet.channelId
string
The ID of the YouTube channel associated with the comment.
snippet.textDisplay
string
The comment's text. The text can be retrieved in either plain text or HTML. (The
comments.list
and commentThreads.list
methods both support a textFormat
parameter, which specifies the chosen text format.)Even the plain text may differ from the original comment text. For example, it may replace video links with video titles.
snippet.textOriginal
string
The original, raw text of the comment as it was initially posted or last updated. The original text is only returned to the authenticated user if they are the comment's author.
snippet.parentId
string
The unique ID of the parent comment. This property is only set if the comment was submitted as a reply to another comment.
snippet.canRate
boolean
This setting indicates whether the current viewer can rate the comment.
snippet.viewerRating
string
The rating the viewer has given to this comment. This property doesn't identify
dislike
ratings, though this behavior is subject to change. In the meantime, the property value is like
if the viewer has rated the comment positively. The value is none
in all other cases, including the user having given the comment a negative rating or not having rated the comment.Valid values for this property are:
like
none
snippet.likeCount
unsigned integer
The total number of likes (positive ratings) the comment has received.
snippet.moderationStatus
string
The comment's moderation status. This property is only returned if the API request was authorized by the owner of the channel or the video on which the requested comments were made. Also, this property isn't set if the API request used the
id
filter parameter.Valid values for this property are:
heldForReview
likelySpam
published
rejected
snippet.publishedAt
datetime
The date and time when the comment was orignally published. The value is specified in ISO 8601 format.
snippet.updatedAt
datetime
The date and time when the comment was last updated. The value is specified in ISO 8601 format.
... <看更多>
json comment 在 Manage JSON (comments) with org literate programming and ... 的推薦與評價
Here is a way to do this with literate programming in org. #+BEGIN_SRC json :tangle config.json {"key1": "value", #+END_SRC For key2 I ... ... <看更多>
json comment 在 Can comments be used in JSON? - Stack Overflow 的推薦與評價
... <看更多>
相關內容