Skip to content

Commit

Permalink
fix(docs): bloggerId should be a string (#1896)
Browse files Browse the repository at this point in the history
  • Loading branch information
JustinBeckwith authored and bcoe committed Dec 3, 2019
1 parent 744dba0 commit a3e9285
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -67,7 +67,7 @@ const blogger = google.blogger({
});

const params = {
blogId: 3213900
blogId: '3213900'
};

// get the blog details
Expand Down Expand Up @@ -211,7 +211,7 @@ const blogger = google.blogger_v3({
});

const params = {
blogId: 3213900
blogId: '3213900'
};

async function main(params) {
Expand Down Expand Up @@ -416,7 +416,7 @@ const blogger = google.blogger({
// All requests made with this service client will contain the
// blogId query parameter unless overridden in individual API calls.
params: {
blogId: 3213900
blogId: '3213900'
}
});

Expand Down
2 changes: 1 addition & 1 deletion samples/blogger/blogger.js
Expand Up @@ -27,7 +27,7 @@ nconf
blogger.blogs.get(
{
key: nconf.get('api_key'),
blogId: 3213900,
blogId: '3213900',
},
(err, res) => {
if (err) {
Expand Down

0 comments on commit a3e9285

Please sign in to comment.