Liking cljdoc? Tell your friends :D

happygapi.blogger.posts

Blogger API: posts. API for access to the data within Blogger. See: https://developers.google.com/blogger/docs/3.0/getting_startedapi/reference/rest/v3/posts

Blogger API: posts.
API for access to the data within Blogger.
See: https://developers.google.com/blogger/docs/3.0/getting_startedapi/reference/rest/v3/posts
raw docstring

delete$clj

(delete$ auth parameters)

https://developers.google.com/blogger/docs/3.0/getting_startedapi/reference/rest/v3/posts/delete

Required parameters: blogId, postId

Optional parameters: none

Delete a post by ID.

https://developers.google.com/blogger/docs/3.0/getting_startedapi/reference/rest/v3/posts/delete

Required parameters: blogId, postId

Optional parameters: none

Delete a post by ID.
sourceraw docstring

get$clj

(get$ auth parameters)

https://developers.google.com/blogger/docs/3.0/getting_startedapi/reference/rest/v3/posts/get

Required parameters: blogId, postId

Optional parameters: fetchBody, fetchImages, maxComments, view

Get a post by ID.

https://developers.google.com/blogger/docs/3.0/getting_startedapi/reference/rest/v3/posts/get

Required parameters: blogId, postId

Optional parameters: fetchBody, fetchImages, maxComments, view

Get a post by ID.
sourceraw docstring

getByPath$clj

(getByPath$ auth parameters)

https://developers.google.com/blogger/docs/3.0/getting_startedapi/reference/rest/v3/posts/getByPath

Required parameters: blogId, path

Optional parameters: maxComments, view

Retrieve a Post by Path.

https://developers.google.com/blogger/docs/3.0/getting_startedapi/reference/rest/v3/posts/getByPath

Required parameters: blogId, path

Optional parameters: maxComments, view

Retrieve a Post by Path.
sourceraw docstring

insert$clj

(insert$ auth parameters body)

https://developers.google.com/blogger/docs/3.0/getting_startedapi/reference/rest/v3/posts/insert

Required parameters: blogId

Optional parameters: fetchBody, fetchImages, isDraft

Body:

{:labels [string], :titleLink string, :content string, :updated string, :images [{:url string}], :selfLink string, :etag string, :title string, :author {:displayName string, :id string, :image {:url string}, :url string}, :replies {:items [{:inReplyTo {:id string}, :content string, :updated string, :selfLink string, :author {:displayName string, :id string, :image {:url string}, :url string}, :status string, :id string, :kind string, :post {:id string}, :blog {:id string}, :published string}], :selfLink string, :totalItems string}, :status string, :customMetaData string, :id string, :kind string, :url string, :readerComments string, :location {:lat number, :lng number, :name string, :span string}, :blog {:id string}, :published string}

Add a post.

https://developers.google.com/blogger/docs/3.0/getting_startedapi/reference/rest/v3/posts/insert

Required parameters: blogId

Optional parameters: fetchBody, fetchImages, isDraft

Body: 

{:labels [string],
 :titleLink string,
 :content string,
 :updated string,
 :images [{:url string}],
 :selfLink string,
 :etag string,
 :title string,
 :author {:displayName string,
          :id string,
          :image {:url string},
          :url string},
 :replies {:items [{:inReplyTo {:id string},
                    :content string,
                    :updated string,
                    :selfLink string,
                    :author {:displayName string,
                             :id string,
                             :image {:url string},
                             :url string},
                    :status string,
                    :id string,
                    :kind string,
                    :post {:id string},
                    :blog {:id string},
                    :published string}],
           :selfLink string,
           :totalItems string},
 :status string,
 :customMetaData string,
 :id string,
 :kind string,
 :url string,
 :readerComments string,
 :location {:lat number, :lng number, :name string, :span string},
 :blog {:id string},
 :published string}

Add a post.
sourceraw docstring

list$clj

(list$ auth parameters)

https://developers.google.com/blogger/docs/3.0/getting_startedapi/reference/rest/v3/posts/list

Required parameters: blogId

Optional parameters: labels, startDate, pageToken, endDate, fetchBodies, status, fetchImages, maxResults, view, orderBy

Retrieves a list of posts, possibly filtered.

https://developers.google.com/blogger/docs/3.0/getting_startedapi/reference/rest/v3/posts/list

Required parameters: blogId

Optional parameters: labels, startDate, pageToken, endDate, fetchBodies, status, fetchImages, maxResults, view, orderBy

Retrieves a list of posts, possibly filtered.
sourceraw docstring

patch$clj

(patch$ auth parameters body)

https://developers.google.com/blogger/docs/3.0/getting_startedapi/reference/rest/v3/posts/patch

Required parameters: blogId, postId

Optional parameters: fetchBody, fetchImages, maxComments, publish, revert

Body:

{:labels [string], :titleLink string, :content string, :updated string, :images [{:url string}], :selfLink string, :etag string, :title string, :author {:displayName string, :id string, :image {:url string}, :url string}, :replies {:items [{:inReplyTo {:id string}, :content string, :updated string, :selfLink string, :author {:displayName string, :id string, :image {:url string}, :url string}, :status string, :id string, :kind string, :post {:id string}, :blog {:id string}, :published string}], :selfLink string, :totalItems string}, :status string, :customMetaData string, :id string, :kind string, :url string, :readerComments string, :location {:lat number, :lng number, :name string, :span string}, :blog {:id string}, :published string}

Update a post. This method supports patch semantics.

https://developers.google.com/blogger/docs/3.0/getting_startedapi/reference/rest/v3/posts/patch

Required parameters: blogId, postId

Optional parameters: fetchBody, fetchImages, maxComments, publish, revert

Body: 

{:labels [string],
 :titleLink string,
 :content string,
 :updated string,
 :images [{:url string}],
 :selfLink string,
 :etag string,
 :title string,
 :author {:displayName string,
          :id string,
          :image {:url string},
          :url string},
 :replies {:items [{:inReplyTo {:id string},
                    :content string,
                    :updated string,
                    :selfLink string,
                    :author {:displayName string,
                             :id string,
                             :image {:url string},
                             :url string},
                    :status string,
                    :id string,
                    :kind string,
                    :post {:id string},
                    :blog {:id string},
                    :published string}],
           :selfLink string,
           :totalItems string},
 :status string,
 :customMetaData string,
 :id string,
 :kind string,
 :url string,
 :readerComments string,
 :location {:lat number, :lng number, :name string, :span string},
 :blog {:id string},
 :published string}

Update a post. This method supports patch semantics.
sourceraw docstring

publish$clj

(publish$ auth parameters)

https://developers.google.com/blogger/docs/3.0/getting_startedapi/reference/rest/v3/posts/publish

Required parameters: blogId, postId

Optional parameters: publishDate

Publishes a draft post, optionally at the specific time of the given publishDate parameter.

https://developers.google.com/blogger/docs/3.0/getting_startedapi/reference/rest/v3/posts/publish

Required parameters: blogId, postId

Optional parameters: publishDate

Publishes a draft post, optionally at the specific time of the given publishDate parameter.
sourceraw docstring

revert$clj

(revert$ auth parameters)

https://developers.google.com/blogger/docs/3.0/getting_startedapi/reference/rest/v3/posts/revert

Required parameters: blogId, postId

Optional parameters: none

Revert a published or scheduled post to draft state.

https://developers.google.com/blogger/docs/3.0/getting_startedapi/reference/rest/v3/posts/revert

Required parameters: blogId, postId

Optional parameters: none

Revert a published or scheduled post to draft state.
sourceraw docstring

search$clj

(search$ auth parameters)

https://developers.google.com/blogger/docs/3.0/getting_startedapi/reference/rest/v3/posts/search

Required parameters: blogId, q

Optional parameters: fetchBodies, orderBy

Search for a post.

https://developers.google.com/blogger/docs/3.0/getting_startedapi/reference/rest/v3/posts/search

Required parameters: blogId, q

Optional parameters: fetchBodies, orderBy

Search for a post.
sourceraw docstring

update$clj

(update$ auth parameters body)

https://developers.google.com/blogger/docs/3.0/getting_startedapi/reference/rest/v3/posts/update

Required parameters: blogId, postId

Optional parameters: fetchBody, fetchImages, maxComments, publish, revert

Body:

{:labels [string], :titleLink string, :content string, :updated string, :images [{:url string}], :selfLink string, :etag string, :title string, :author {:displayName string, :id string, :image {:url string}, :url string}, :replies {:items [{:inReplyTo {:id string}, :content string, :updated string, :selfLink string, :author {:displayName string, :id string, :image {:url string}, :url string}, :status string, :id string, :kind string, :post {:id string}, :blog {:id string}, :published string}], :selfLink string, :totalItems string}, :status string, :customMetaData string, :id string, :kind string, :url string, :readerComments string, :location {:lat number, :lng number, :name string, :span string}, :blog {:id string}, :published string}

Update a post.

https://developers.google.com/blogger/docs/3.0/getting_startedapi/reference/rest/v3/posts/update

Required parameters: blogId, postId

Optional parameters: fetchBody, fetchImages, maxComments, publish, revert

Body: 

{:labels [string],
 :titleLink string,
 :content string,
 :updated string,
 :images [{:url string}],
 :selfLink string,
 :etag string,
 :title string,
 :author {:displayName string,
          :id string,
          :image {:url string},
          :url string},
 :replies {:items [{:inReplyTo {:id string},
                    :content string,
                    :updated string,
                    :selfLink string,
                    :author {:displayName string,
                             :id string,
                             :image {:url string},
                             :url string},
                    :status string,
                    :id string,
                    :kind string,
                    :post {:id string},
                    :blog {:id string},
                    :published string}],
           :selfLink string,
           :totalItems string},
 :status string,
 :customMetaData string,
 :id string,
 :kind string,
 :url string,
 :readerComments string,
 :location {:lat number, :lng number, :name string, :span string},
 :blog {:id string},
 :published string}

Update a post.
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close