Featured Post

Elon Musk’s Influence on the 2024 Presidential Election and Its Potential Outcomes

  In the upcoming 2024 U.S. presidential election, the influence of tech moguls like Elon Musk is a point of significant interest. Musk, with his vast following, has demonstrated an ability to sway public opinion through his business decisions, public statements, and presence on social media platforms like X (formerly Twitter). The effect Musk’s actions may have on the election—and candidates such as Donald Trump—is worth examining as he becomes a key player in the larger landscape of digital influence. Elon Musk and Digital Influence in Politics A Shift in Public Influence Musk’s reach extends beyond business; he is now a major influencer in political spheres. By acquiring X, Musk gained direct access to one of the most influential social media platforms in the world, where he regularly engages with a diverse audience. His unpredictable political stances and commentary resonate with millions, and his platform decisions have the potential to shape public opinion. Musk’s Public Poli...

Using Blogger API with Google Apps Script

Like WordPress, you can also manage your Blogger blogs using Google Apps Scripts. You need to enable the Blogger API from your Google Developers console and also include the Apps Script oAuth2 library in your Google Apps script project. The scope should be set to either of the following depending on whether to want read or write access to blogs.
https://www.googleapis.com/auth/blogger
https://www.googleapis.com/auth/blogger.readonly
The snippet connects to the Blogger API and fetches the list of Blogger blogs of the currently authenticated users. It then outputs the blog’s ID, name and blog URL in the console log.
function bloggerAPI() {

  var api = "https://www.googleapis.com/blogger/v3/users/self/blogs";

  var headers = {
    "Authorization": "Bearer " + getService().getAccessToken()
  };

  var options = {
    "headers": headers,
    "method" : "GET",
    "muteHttpExceptions": true
  };

  var response = UrlFetchApp.fetch(api, options);

  var json = JSON.parse(response.getContentText());

  for (var i in json.items) {
    Logger.log("[%s] %s %s", json.items[i].id, json.items[i].name, json.items[i].url);
  }
}
In the next example, we using the Blogger API to update the title and content of a blog post through Script. We update the post through Patch Semantics which allows us to send only fields that have changed or need to updated. Since UrlFetchApp doesn’t allow HTTP PATCH requests, we do an HTTP POST request and set the override X-HTTP-Method-Override header to PATCH, as shown below:
function updatePost(blogID, postID) {

  var url = "https://www.googleapis.com/blogger/v3/blogs/" + blogID + "/posts/" + postID;

  var payload = {
    "title"   : "This is the post title",
    "content" : "This is **HTML** post"
  };

  var headers = {
    "Authorization": "Bearer " + getService().getAccessToken(),
    "X-HTTP-Method-Override": "PATCH"
  };

  var options = {
    "headers": headers,
    "method" : "POST",
    "muteHttpExceptions" : true,
    "payload": JSON.stringify(payload),
    "contentType": "application/json"
  }

  var response = UrlFetchApp.fetch(url, options);

  Logger.log(response.getContentText());

}
Troubleshooting: If you fetching the post status (draft, live or scheduled), you need to set the view parameter as “ADMIN” in the API call.
For 403 forbidden errors that say “We’re sorry, but you don’t have permission to access this resource” - it is likely that you have only read-only or view access to a blog.

Comments