From 90959a62f1439a2da5e70f621e5657b717be96f1 Mon Sep 17 00:00:00 2001 From: Justin Beckwith Date: Mon, 2 Dec 2019 19:15:11 -0800 Subject: [PATCH] fix(docs): bloggerId should be a string --- README.md | 6 +++--- samples/blogger/blogger.js | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 8cec31fc036..69db0adbf15 100644 --- a/README.md +++ b/README.md @@ -67,7 +67,7 @@ const blogger = google.blogger({ }); const params = { - blogId: 3213900 + blogId: '3213900' }; // get the blog details @@ -211,7 +211,7 @@ const blogger = google.blogger_v3({ }); const params = { - blogId: 3213900 + blogId: '3213900' }; async function main(params) { @@ -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' } }); diff --git a/samples/blogger/blogger.js b/samples/blogger/blogger.js index 114c1c77673..008c5884e3b 100644 --- a/samples/blogger/blogger.js +++ b/samples/blogger/blogger.js @@ -27,7 +27,7 @@ nconf blogger.blogs.get( { key: nconf.get('api_key'), - blogId: 3213900, + blogId: '3213900', }, (err, res) => { if (err) {