Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(docs): bloggerId should be a string #1896

Merged
merged 1 commit into from Dec 3, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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