{"id":4754,"date":"2014-08-21T15:08:33","date_gmt":"2014-08-21T06:08:33","guid":{"rendered":"http:\/\/www.ka-net.org\/blog\/?p=4754"},"modified":"2014-08-21T15:08:33","modified_gmt":"2014-08-21T06:08:33","slug":"google-apps-script%e3%81%a7voicetext-web-api%e3%82%92%e5%91%bc%e3%81%b3%e5%87%ba%e3%81%99%e3%80%82","status":"publish","type":"post","link":"https:\/\/www.ka-net.org\/blog\/?p=4754","title":{"rendered":"Google Apps Script\u3067VoiceText Web API\u3092\u547c\u3073\u51fa\u3059\u3002"},"content":{"rendered":"<p><strong>\u30fb\u30e2\u30e4\u3055\u307e\u306e\u30b7\u30e7\u30a6\u541b\u306b\u3044\u308d\u3044\u308d\u558b\u3089\u305b\u308bVBA\u30de\u30af\u30ed(1)<\/strong><br \/>\n<a href=\"\/\/www.ka-net.org\/blog\/?p=4714\" title=\"\u30e2\u30e4\u3055\u307e\u306e\u30b7\u30e7\u30a6\u541b\u306b\u3044\u308d\u3044\u308d\u558b\u3089\u305b\u308bVBA\u30de\u30af\u30ed(1)\" target=\"_blank\">\/\/www.ka-net.org\/blog\/?p=4714<\/a><br \/>\n<strong>\u30fb\u30e2\u30e4\u3055\u307e\u306e\u30b7\u30e7\u30a6\u541b\u306b\u3044\u308d\u3044\u308d\u558b\u3089\u305b\u308bVBA\u30de\u30af\u30ed(2)<\/strong><br \/>\n<a href=\"\/\/www.ka-net.org\/blog\/?p=4718\" title=\"\u30e2\u30e4\u3055\u307e\u306e\u30b7\u30e7\u30a6\u541b\u306b\u3044\u308d\u3044\u308d\u558b\u3089\u305b\u308bVBA\u30de\u30af\u30ed(2)\" target=\"_blank\">\/\/www.ka-net.org\/blog\/?p=4718<\/a><\/p>\n<p>\u3067\u7d39\u4ecb\u3057\u305f\u300c<a href=\"https:\/\/cloud.voicetext.jp\/webapi\/docs\/api\" title=\"VoiceText Web API\" target=\"_blank\">VoiceText Web API<\/a>\u300d\u3092\u3001\u4eca\u5ea6\u306f<span style=\"color: #ff0000; font-weight: bold;\">Google Apps Script<\/span>\u304b\u3089\u4f7f\u3063\u3066\u307f\u307e\u3057\u305f\u3002<\/p>\n<p><span style=\"color: #ff0000; font-weight: bold;\">\u203b API\u30ad\u30fc\u306e\u7533\u8acb\u3084\u5229\u7528\u65b9\u6cd5\u306b\u3064\u3044\u3066\u306f\u4e0a\u8a18\u8a18\u4e8b\u3092\u3054\u53c2\u7167\u304f\u3060\u3055\u3044\u3002<\/span><\/p>\n<p><span style=\"color: #ff0000; font-weight: bold;\">\u203b Web\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3068\u3057\u3066\u30b9\u30af\u30ea\u30d7\u30c8\u3092\u4f5c\u6210\u3059\u308b\u65b9\u6cd5\u306f\u300c<a href=\"\/\/www.ka-net.org\/blog\/?p=4326\" title=\"[Google Apps Script]Web\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u4f5c\u6210\u3059\u308b\u3002\" target=\"_blank\">[Google Apps Script]Web\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u4f5c\u6210\u3059\u308b\u3002<\/a>\u300d\u3092\u3054\u53c2\u7167\u304f\u3060\u3055\u3044\u3002<\/span><\/p>\n<p><span style=\"color: #ff0000; font-weight: bold;\">\u203b \u62e1\u5f35\u30b5\u30fc\u30d3\u30b9\u3092\u4f7f\u7528\u3057\u3066\u3044\u308b\u306e\u3067\u3001\u300c<a href=\"\/\/www.ka-net.org\/blog\/?p=4372\" title=\"[Google Apps Script]\u62e1\u5f35\u30b5\u30fc\u30d3\u30b9\u3092\u4f7f\u7528\u3059\u308b\u3002\" target=\"_blank\">[Google Apps Script]\u62e1\u5f35\u30b5\u30fc\u30d3\u30b9\u3092\u4f7f\u7528\u3059\u308b\u3002<\/a>\u300d\u3092\u53c2\u8003\u306bDrive API\u3092\u6709\u52b9\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002<\/span><\/p>\n<p><strong>\u30fb\u30b3\u30fc\u30c9.gs<\/strong><\/p>\n<pre class=\"brush: jscript; title: ; notranslate\" title=\"\">function doGet() {\r\n  return HtmlService.createTemplateFromFile('page').evaluate().setSandboxMode(HtmlService.SandboxMode.NATIVE);\r\n}\r\n\r\nfunction getVoice(api_key, txt) {\r\n  var file_name = &quot;tts_file.wav&quot;;\r\n  var fol = DriveApp.getRootFolder();\r\n  \r\n  \/\/wav\u30d5\u30a1\u30a4\u30eb\u3092\u4e8b\u524d\u306b\u524a\u9664\r\n  try {\r\n    fol.removeFile(fol.getFilesByName(file_name).next());\r\n  } catch(e) {\r\n    \/\/\u4f55\u3082\u3057\u306a\u3044\r\n  }\r\n  \r\n  \/\/VoiceText Web API\u547c\u3073\u51fa\u3057\r\n  var url = &quot;https:\/\/api.voicetext.jp\/v1\/tts&quot;;\r\n  txt = encodeURIComponent(txt);\r\n  var dat = &quot;text=&quot; + txt + &quot;&amp;speaker=show&quot;;\r\n  var opt = {\r\n    &quot;contentType&quot; : &quot;application\/x-www-form-urlencoded&quot;,\r\n    &quot;method&quot; : &quot;POST&quot;,\r\n    &quot;headers&quot; : {\r\n      &quot;Authorization&quot; : &quot; Basic &quot; + Utilities.base64Encode(api_key + &quot;:&quot;)\r\n    },\r\n    &quot;payload&quot; : dat\r\n  }\r\n  \r\n  \/\/Google \u30c9\u30e9\u30a4\u30d6\u306bwav\u30d5\u30a1\u30a4\u30eb\u4fdd\u5b58\r\n  var res = UrlFetchApp.fetch(url, opt);\r\n  var file = fol.createFile(res.getBlob());\r\n  file.setName(file_name);\r\n  file.setSharing(DriveApp.Access.ANYONE, DriveApp.Permission.VIEW); \/\/\u6a29\u9650\u8a2d\u5b9a(\u8ab0\u3067\u3082\u95b2\u89a7\u53ef)\r\n  \r\n  return file.getUrl();\r\n}<\/pre>\n<p><strong>\u30fbpage.html<\/strong><\/p>\n<pre class=\"brush: xml; title: ; notranslate\" title=\"\">&lt;style&gt;\r\n* {\r\n  padding: 5px;\r\n}\r\ntd {\r\n  border-style: none;\r\n}\r\n&lt;\/style&gt;\r\n&lt;table&gt;\r\n  &lt;tr&gt;\r\n    &lt;td&gt;API\u30ad\u30fc&lt;\/td&gt;\r\n    &lt;td&gt;&lt;input id=&quot;txtKey&quot; type=&quot;text&quot; size=&quot;30&quot; value=&quot;&quot;&gt;&lt;\/td&gt;\r\n  &lt;\/tr&gt;\r\n  &lt;tr&gt;\r\n    &lt;td&gt;\u30c6\u30ad\u30b9\u30c8&lt;\/td&gt;\r\n    &lt;td&gt;&lt;textarea id=&quot;txtTarget&quot; cols=40 rows=4&gt;\u3053\u3093\u306b\u3061\u306f\u3002&lt;\/textarea&gt;&lt;\/td&gt;\r\n  &lt;\/tr&gt;\r\n  &lt;tr&gt;\r\n    &lt;td colspan=&quot;2&quot;&gt;&lt;input id=&quot;btnCall&quot; type=&quot;button&quot; value=&quot;VoiceText Web API\u547c\u3073\u51fa\u3057&quot;&gt;&lt;\/td&gt;\r\n  &lt;\/tr&gt;\r\n  &lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;\/td&gt;&lt;\/tr&gt;\r\n  &lt;tr&gt;\r\n    &lt;td colspan=&quot;2&quot;&gt;&lt;div id=&quot;divWav&quot;&gt;&lt;\/div&gt;&lt;\/td&gt;\r\n  &lt;\/tr&gt;\r\n&lt;\/table&gt;\r\n&lt;script src=&quot;\/\/ajax.googleapis.com\/ajax\/libs\/jquery\/1.11.0\/jquery.min.js&quot;&gt;&lt;\/script&gt;\r\n&lt;script&gt;\r\n  $(function(){\r\n    $(&quot;#btnCall&quot;).click(function(){\r\n      $(this).attr(&quot;disabled&quot;, &quot;disabled&quot;);\r\n      $(&quot;#divWav&quot;).empty();\r\n      google.script.run.withSuccessHandler(onSuccess).getVoice($(&quot;#txtKey&quot;).val(), $(&quot;#txtTarget&quot;).val());\r\n    });\r\n  });\r\n  \r\n  function onSuccess(dat) {\r\n    $(&quot;#divWav&quot;).append('&lt;a href=&quot;' + dat + '&quot; target=&quot;_blank&quot; title=&quot;wav\u30d5\u30a1\u30a4\u30eb&quot;&gt;\u30ea\u30f3\u30af\u3092\u30af\u30ea\u30c3\u30af\u3059\u308b\u3068wav\u30d5\u30a1\u30a4\u30eb\u306e\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u30da\u30fc\u30b8\u304c\u8868\u793a\u3055\u308c\u307e\u3059\u3002&lt;\/a&gt;');\r\n    $(&quot;#btnCall&quot;).removeAttr(&quot;disabled&quot;);\r\n  }\r\n&lt;\/script&gt;<\/pre>\n<p><a href=\"\/\/www.ka-net.org\/blog\/wp-content\/uploads\/GAS_VoiceTextWebAPI_01.jpg\"><img loading=\"lazy\" decoding=\"async\" src=\"\/\/www.ka-net.org\/blog\/wp-content\/uploads\/GAS_VoiceTextWebAPI_01.jpg\" alt=\"GAS_VoiceTextWebAPI_01\" width=\"987\" height=\"696\" class=\"alignnone size-full wp-image-4755\" srcset=\"https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/GAS_VoiceTextWebAPI_01.jpg 987w, https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/GAS_VoiceTextWebAPI_01-300x211.jpg 300w\" sizes=\"auto, (max-width: 987px) 100vw, 987px\" \/><\/a><\/p>\n<p>\u52d5\u4f5c\u3068\u3057\u3066\u306f\u3001<\/p>\n<ol>\n<li>VoiceText Web API\u3092\u547c\u3073\u51fa\u3057\u307e\u3059\u3002<\/li>\n<li>\u8fd4\u3063\u3066\u304d\u305fwav\u30d5\u30a1\u30a4\u30eb\u3092Google \u30c9\u30e9\u30a4\u30d6\u306b\u4fdd\u5b58\u3057\u307e\u3059\u3002<\/li>\n<li>Google \u30c9\u30e9\u30a4\u30d6\u306b\u4fdd\u5b58\u3057\u305fwav\u30d5\u30a1\u30a4\u30eb\u3092\u958b\u3044\u3066\u518d\u751f\u3057\u307e\u3059\u3002<\/li>\n<\/ol>\n<p>\u3068\u3044\u3063\u305f\u6d41\u308c\u306b\u306a\u3063\u3066\u3044\u307e\u3059\u3002<\/p>\n<h4>\u25a0 \u4f7f\u3044\u65b9<\/h4>\n<ol>\n<li>Web\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u5b9f\u884c\u3057\u307e\u3059\u3002<\/li>\n<li>API\u30ad\u30fc\u3068\u8aad\u307f\u4e0a\u3052\u308b\u30c6\u30ad\u30b9\u30c8\u3092\u5165\u529b\u3057\u3001\u300c<span style=\"color: #ff0000; font-weight: bold;\">VoiceText Web API\u547c\u3073\u51fa\u3057<\/span>\u300d\u30dc\u30bf\u30f3\u3092\u30af\u30ea\u30c3\u30af\u3057\u307e\u3059\u3002<\/li>\n<p><a href=\"\/\/www.ka-net.org\/blog\/wp-content\/uploads\/GAS_VoiceTextWebAPI_02.jpg\"><img loading=\"lazy\" decoding=\"async\" src=\"\/\/www.ka-net.org\/blog\/wp-content\/uploads\/GAS_VoiceTextWebAPI_02.jpg\" alt=\"GAS_VoiceTextWebAPI_02\" width=\"416\" height=\"186\" class=\"alignnone size-full wp-image-4756\" srcset=\"https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/GAS_VoiceTextWebAPI_02.jpg 416w, https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/GAS_VoiceTextWebAPI_02-300x134.jpg 300w\" sizes=\"auto, (max-width: 416px) 100vw, 416px\" \/><\/a><\/p>\n<li>wav\u30d5\u30a1\u30a4\u30eb\u3078\u306e\u30ea\u30f3\u30af\u3092\u30af\u30ea\u30c3\u30af\u3057\u307e\u3059\u3002<\/li>\n<p><a href=\"\/\/www.ka-net.org\/blog\/wp-content\/uploads\/GAS_VoiceTextWebAPI_03.jpg\"><img loading=\"lazy\" decoding=\"async\" src=\"\/\/www.ka-net.org\/blog\/wp-content\/uploads\/GAS_VoiceTextWebAPI_03.jpg\" alt=\"GAS_VoiceTextWebAPI_03\" width=\"535\" height=\"278\" class=\"alignnone size-full wp-image-4757\" srcset=\"https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/GAS_VoiceTextWebAPI_03.jpg 535w, https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/GAS_VoiceTextWebAPI_03-300x155.jpg 300w\" sizes=\"auto, (max-width: 535px) 100vw, 535px\" \/><\/a><\/p>\n<li>Google \u30c9\u30e9\u30a4\u30d6\u4e0a\u306e\u30d5\u30a1\u30a4\u30eb\u304c\u958b\u304b\u308c\u307e\u3059\u3002\u3053\u306e\u3068\u304d<span style=\"color: #ff0000; font-weight: bold;\">Music Player for Google Drive<\/span>\u3092\u4f7f\u3046\u3068\u3001\u30ed\u30fc\u30ab\u30eb\u306b\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3059\u308b\u3053\u3068\u306a\u304f\u3001\u76f4\u63a5wav\u30d5\u30a1\u30a4\u30eb\u3092\u518d\u751f\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002<\/li>\n<p><a href=\"\/\/www.ka-net.org\/blog\/wp-content\/uploads\/GAS_VoiceTextWebAPI_04.jpg\"><img loading=\"lazy\" decoding=\"async\" src=\"\/\/www.ka-net.org\/blog\/wp-content\/uploads\/GAS_VoiceTextWebAPI_04.jpg\" alt=\"GAS_VoiceTextWebAPI_04\" width=\"401\" height=\"380\" class=\"alignnone size-full wp-image-4758\" srcset=\"https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/GAS_VoiceTextWebAPI_04.jpg 401w, https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/GAS_VoiceTextWebAPI_04-300x284.jpg 300w\" sizes=\"auto, (max-width: 401px) 100vw, 401px\" \/><\/a><\/p>\n<p><a href=\"\/\/www.ka-net.org\/blog\/wp-content\/uploads\/GAS_VoiceTextWebAPI_05.jpg\"><img loading=\"lazy\" decoding=\"async\" src=\"\/\/www.ka-net.org\/blog\/wp-content\/uploads\/GAS_VoiceTextWebAPI_05.jpg\" alt=\"GAS_VoiceTextWebAPI_05\" width=\"388\" height=\"477\" class=\"alignnone size-full wp-image-4759\" srcset=\"https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/GAS_VoiceTextWebAPI_05.jpg 388w, https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/GAS_VoiceTextWebAPI_05-244x300.jpg 244w\" sizes=\"auto, (max-width: 388px) 100vw, 388px\" \/><\/a><\/p>\n<p><a href=\"\/\/www.ka-net.org\/blog\/wp-content\/uploads\/GAS_VoiceTextWebAPI_06.jpg\"><img loading=\"lazy\" decoding=\"async\" src=\"\/\/www.ka-net.org\/blog\/wp-content\/uploads\/GAS_VoiceTextWebAPI_06.jpg\" alt=\"GAS_VoiceTextWebAPI_06\" width=\"543\" height=\"343\" class=\"alignnone size-full wp-image-4760\" srcset=\"https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/GAS_VoiceTextWebAPI_06.jpg 543w, https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/GAS_VoiceTextWebAPI_06-300x189.jpg 300w\" sizes=\"auto, (max-width: 543px) 100vw, 543px\" \/><\/a>\n<\/ol>\n<p>Google Apps Script\u306fUrlFetchApp.fetch\u30e1\u30bd\u30c3\u30c9\u3092\u4f7f\u3046\u3068\u7c21\u5358\u306bWeb API\u304c\u547c\u3073\u51fa\u305b\u308b\u306e\u3067\u4fbf\u5229\u3067\u3059\u3002<\/p>\n<p>\u30fb\u30fb\u30fb\u4e0a\u8a18\u30b9\u30af\u30ea\u30d7\u30c8\u3001\u672c\u5f53\u306f\u4e0b\u8a18\u306e\u3088\u3046\u306b\u52d5\u7684\u306baudio\u8981\u7d20\u3092\u8ffd\u52a0\u3057\u3066wav\u30d5\u30a1\u30a4\u30eb\u3092\u518d\u751f(wav\u30d5\u30a1\u30a4\u30eb\u53d7\u53d6 \u2192 Base64\u30a8\u30f3\u30b3\u30fc\u30c9 \u2192 data URI Scheme\u3067\u30bd\u30fc\u30b9\u6307\u5b9a)\u3059\u308b\u4e88\u5b9a\u3067\u3057\u305f\u3002<\/p>\n<p><strong>\u30fb\u30b3\u30fc\u30c9.gs<\/strong><\/p>\n<pre class=\"brush: jscript; title: ; notranslate\" title=\"\">\/\/ Script-as-app template.\r\nfunction doGet() {\r\n  return HtmlService.createTemplateFromFile('page').evaluate().setSandboxMode(HtmlService.SandboxMode.NATIVE);\r\n}\r\n\r\nfunction getVoice(api_key, txt) {\r\n  var url = &quot;https:\/\/api.voicetext.jp\/v1\/tts&quot;;\r\n  txt = encodeURIComponent(txt);\r\n  var dat = &quot;text=&quot; + txt + &quot;&amp;speaker=show&quot;;\r\n  var opt = {\r\n    &quot;contentType&quot; : &quot;application\/x-www-form-urlencoded&quot;,\r\n    &quot;method&quot; : &quot;POST&quot;,\r\n    &quot;headers&quot; : {\r\n      &quot;Authorization&quot; : &quot; Basic &quot; + Utilities.base64Encode(api_key + &quot;:&quot;)\r\n    },\r\n    &quot;payload&quot; : dat\r\n  }\r\n  var res = UrlFetchApp.fetch(url, opt);\r\n  return Utilities.base64Encode(res.getContent());\r\n}<\/pre>\n<p><strong>\u30fbpage.html<\/strong><\/p>\n<pre class=\"brush: xml; title: ; notranslate\" title=\"\">&lt;style&gt;\r\n* {\r\n  padding: 5px;\r\n}\r\ntd {\r\n  border-style: none;\r\n}\r\n&lt;\/style&gt;\r\n&lt;table&gt;\r\n  &lt;tr&gt;\r\n    &lt;td&gt;API\u30ad\u30fc&lt;\/td&gt;\r\n    &lt;td&gt;&lt;input id=&quot;txtKey&quot; type=&quot;text&quot; size=&quot;30&quot; value=&quot;&quot;&gt;&lt;\/td&gt;\r\n  &lt;\/tr&gt;\r\n  &lt;tr&gt;\r\n    &lt;td&gt;\u30c6\u30ad\u30b9\u30c8&lt;\/td&gt;\r\n    &lt;td&gt;&lt;textarea id=&quot;txtTarget&quot; cols=40 rows=4&gt;\u3053\u3093\u306b\u3061\u306f\u3002&lt;\/textarea&gt;&lt;\/td&gt;\r\n  &lt;\/tr&gt;\r\n  &lt;tr&gt;\r\n    &lt;td colspan=&quot;2&quot;&gt;&lt;input id=&quot;btnCall&quot; type=&quot;button&quot; value=&quot;VoiceText Web API\u547c\u3073\u51fa\u3057&quot;&gt;&lt;\/td&gt;\r\n  &lt;\/tr&gt;\r\n  &lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;\/td&gt;&lt;\/tr&gt;\r\n  &lt;tr&gt;\r\n    &lt;td colspan=&quot;2&quot;&gt;&lt;div id=&quot;divAudio&quot;&gt;&lt;\/div&gt;&lt;\/td&gt;\r\n  &lt;\/tr&gt;\r\n&lt;\/table&gt;\r\n&lt;script src=&quot;\/\/ajax.googleapis.com\/ajax\/libs\/jquery\/1.11.0\/jquery.min.js&quot;&gt;&lt;\/script&gt;\r\n&lt;script&gt;\r\n  $(function(){\r\n    $('#btnCall').click(function(){\r\n      google.script.run.withSuccessHandler(onSuccess).getVoice($(&quot;#txtKey&quot;).val(), &quot;\u3053\u3093\u306b\u3061\u306f\u3002&quot;);\r\n    });\r\n  });\r\n  \r\n  function onSuccess(dat) {\r\n    $(&quot;#divAudio&quot;).empty();\r\n    var audio = $('&lt;audio \/&gt;', {\r\n      autoPlay : 'autoplay',\r\n      controls : 'controls'\r\n    });\r\n    $('&lt;source \/&gt;').attr('src', 'data:audio\/wav;base64,' + dat).appendTo(audio);\r\n    $(&quot;#divAudio&quot;).append(audio);\r\n  }\r\n&lt;\/script&gt;<\/pre>\n<p>\u304c\u3001\u300c<a href=\"https:\/\/code.google.com\/p\/google-caja\/issues\/detail?id=1601\" title=\"Issue 1601 - google-caja - HTML5 audio element integration - Compiler for making third-party HTML, CSS and JavaScript safe for embedding - Google Project Hosting\" target=\"_blank\">Issue 1601 &#8211; google-caja &#8211; HTML5 audio element integration<\/a>\u300d\u306b\u3082\u3042\u308b\u3088\u3046\u306b\u3001Caja\u304c\u4f59\u8a08\u306a\u3053\u3068\u3092\u3057\u3066\u304f\u308c\u305f\u3070\u3063\u304b\u308a\u306b\u3001audio\u8981\u7d20\u3067\u306e\u518d\u751f\u304c\u3067\u304d\u305a\u3001\u7d50\u5c40\u3001Google \u30c9\u30e9\u30a4\u30d6\u306bwav\u30d5\u30a1\u30a4\u30eb\u4fdd\u5b58 \u2192 \u518d\u751f\u3001\u3068\u3044\u3046\u30ef\u30f3\u30af\u30c3\u30b7\u30e7\u30f3\u7f6e\u304f\u5f62\u306b\u306a\u308a\u307e\u3057\u305f\u30fb\u30fb\u30fborz<\/p>\n","protected":false},"excerpt":{"rendered":"\u30fb\u30e2\u30e4\u3055\u307e\u306e\u30b7\u30e7\u30a6\u541b\u306b\u3044\u308d\u3044\u308d\u558b\u3089\u305b\u308bVBA\u30de\u30af\u30ed(1) \/\/www.ka-net.org\/blog\/?p=4714 \u30fb\u30e2\u30e4\u3055\u307e\u306e\u30b7\u30e7\u30a6\u541b\u306b\u3044\u308d\u3044\u308d\u558b\u3089\u305b\u308bVBA\u30de\u30af\u30ed(2) \/\/www.ka-net.org\/blog\/ [&hellip;]","protected":false},"author":1,"featured_media":7113,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_feature_clip_id":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":false,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2},"jetpack_post_was_ever_published":false},"categories":[126],"tags":[],"class_list":["post-4754","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-google"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"\u30fb\u30e2\u30e4\u3055\u307e\u306e\u30b7\u30e7\u30a6\u541b\u306b\u3044\u308d\u3044\u308d\u558b\u3089\u305b\u308bVBA\u30de\u30af\u30ed(1) \/\/www.ka-net.org\/blog\/?p=4\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"\u304d\u306c\u3042\u3055\"\/>\n\t<meta name=\"google-site-verification\" content=\"xy7uchdGM1SE5sADlVsdekXridA1vSaVWceffSwnE48\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.ka-net.org\/blog\/?p=4754\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"ja_JP\" \/>\n\t\t<meta property=\"og:site_name\" content=\"\u521d\u5fc3\u8005\u5099\u5fd8\u9332 | Power Automate for desktop\u3084Microsoft Office\u958b\u767a\u306e\u60c5\u5831\u304c\u6e80\u8f09\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Google Apps Script\u3067VoiceText Web API\u3092\u547c\u3073\u51fa\u3059\u3002 | \u521d\u5fc3\u8005\u5099\u5fd8\u9332\" \/>\n\t\t<meta property=\"og:description\" content=\"\u30fb\u30e2\u30e4\u3055\u307e\u306e\u30b7\u30e7\u30a6\u541b\u306b\u3044\u308d\u3044\u308d\u558b\u3089\u305b\u308bVBA\u30de\u30af\u30ed(1) \/\/www.ka-net.org\/blog\/?p=4\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.ka-net.org\/blog\/?p=4754\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2014-08-21T06:08:33+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2014-08-21T06:08:33+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Google Apps Script\u3067VoiceText Web API\u3092\u547c\u3073\u51fa\u3059\u3002 | \u521d\u5fc3\u8005\u5099\u5fd8\u9332\" \/>\n\t\t<meta name=\"twitter:description\" content=\"\u30fb\u30e2\u30e4\u3055\u307e\u306e\u30b7\u30e7\u30a6\u541b\u306b\u3044\u308d\u3044\u308d\u558b\u3089\u305b\u308bVBA\u30de\u30af\u30ed(1) \/\/www.ka-net.org\/blog\/?p=4\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=4754#article\",\"name\":\"Google Apps Script\\u3067VoiceText Web API\\u3092\\u547c\\u3073\\u51fa\\u3059\\u3002 | \\u521d\\u5fc3\\u8005\\u5099\\u5fd8\\u9332\",\"headline\":\"Google Apps Script\\u3067VoiceText Web API\\u3092\\u547c\\u3073\\u51fa\\u3059\\u3002\",\"author\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?author=1#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/wp-content\\\/uploads\\\/eyecatch-Google.png\",\"width\":790,\"height\":480},\"datePublished\":\"2014-08-21T15:08:33+09:00\",\"dateModified\":\"2014-08-21T15:08:33+09:00\",\"inLanguage\":\"ja\",\"commentCount\":1,\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=4754#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=4754#webpage\"},\"articleSection\":\"Google\\u95a2\\u9023\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=4754#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.ka-net.org\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?cat=126#listItem\",\"name\":\"Google\\u95a2\\u9023\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?cat=126#listItem\",\"position\":2,\"name\":\"Google\\u95a2\\u9023\",\"item\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?cat=126\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=4754#listItem\",\"name\":\"Google Apps Script\\u3067VoiceText Web API\\u3092\\u547c\\u3073\\u51fa\\u3059\\u3002\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=4754#listItem\",\"position\":3,\"name\":\"Google Apps Script\\u3067VoiceText Web API\\u3092\\u547c\\u3073\\u51fa\\u3059\\u3002\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?cat=126#listItem\",\"name\":\"Google\\u95a2\\u9023\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/#organization\",\"name\":\"\\u521d\\u5fc3\\u8005\\u5099\\u5fd8\\u9332\",\"description\":\"Power Automate for desktop\\u3084Microsoft Office\\u958b\\u767a\\u306e\\u60c5\\u5831\\u304c\\u6e80\\u8f09\",\"url\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?author=1#author\",\"url\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?author=1\",\"name\":\"\\u304d\\u306c\\u3042\\u3055\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=4754#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/1c6237fc3012b3da1f36fa6435b2ccea656e2ff69a51f709c7d8352c69356dc3?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"\\u304d\\u306c\\u3042\\u3055\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=4754#webpage\",\"url\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=4754\",\"name\":\"Google Apps Script\\u3067VoiceText Web API\\u3092\\u547c\\u3073\\u51fa\\u3059\\u3002 | \\u521d\\u5fc3\\u8005\\u5099\\u5fd8\\u9332\",\"description\":\"\\u30fb\\u30e2\\u30e4\\u3055\\u307e\\u306e\\u30b7\\u30e7\\u30a6\\u541b\\u306b\\u3044\\u308d\\u3044\\u308d\\u558b\\u3089\\u305b\\u308bVBA\\u30de\\u30af\\u30ed(1) \\\/\\\/www.ka-net.org\\\/blog\\\/?p=4\",\"inLanguage\":\"ja\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=4754#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?author=1#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?author=1#author\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/wp-content\\\/uploads\\\/eyecatch-Google.png\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=4754\\\/#mainImage\",\"width\":790,\"height\":480},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=4754#mainImage\"},\"datePublished\":\"2014-08-21T15:08:33+09:00\",\"dateModified\":\"2014-08-21T15:08:33+09:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/\",\"name\":\"\\u521d\\u5fc3\\u8005\\u5099\\u5fd8\\u9332\",\"description\":\"Power Automate for desktop\\u3084Microsoft Office\\u958b\\u767a\\u306e\\u60c5\\u5831\\u304c\\u6e80\\u8f09\",\"inLanguage\":\"ja\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Google Apps Script\u3067VoiceText Web API\u3092\u547c\u3073\u51fa\u3059\u3002 | \u521d\u5fc3\u8005\u5099\u5fd8\u9332","description":"\u30fb\u30e2\u30e4\u3055\u307e\u306e\u30b7\u30e7\u30a6\u541b\u306b\u3044\u308d\u3044\u308d\u558b\u3089\u305b\u308bVBA\u30de\u30af\u30ed(1) \/\/www.ka-net.org\/blog\/?p=4","canonical_url":"https:\/\/www.ka-net.org\/blog\/?p=4754","robots":"max-image-preview:large","keywords":"","webmasterTools":{"google-site-verification":"xy7uchdGM1SE5sADlVsdekXridA1vSaVWceffSwnE48","miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.ka-net.org\/blog\/?p=4754#article","name":"Google Apps Script\u3067VoiceText Web API\u3092\u547c\u3073\u51fa\u3059\u3002 | \u521d\u5fc3\u8005\u5099\u5fd8\u9332","headline":"Google Apps Script\u3067VoiceText Web API\u3092\u547c\u3073\u51fa\u3059\u3002","author":{"@id":"https:\/\/www.ka-net.org\/blog\/?author=1#author"},"publisher":{"@id":"https:\/\/www.ka-net.org\/blog\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/eyecatch-Google.png","width":790,"height":480},"datePublished":"2014-08-21T15:08:33+09:00","dateModified":"2014-08-21T15:08:33+09:00","inLanguage":"ja","commentCount":1,"mainEntityOfPage":{"@id":"https:\/\/www.ka-net.org\/blog\/?p=4754#webpage"},"isPartOf":{"@id":"https:\/\/www.ka-net.org\/blog\/?p=4754#webpage"},"articleSection":"Google\u95a2\u9023"},{"@type":"BreadcrumbList","@id":"https:\/\/www.ka-net.org\/blog\/?p=4754#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog#listItem","position":1,"name":"Home","item":"https:\/\/www.ka-net.org\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?cat=126#listItem","name":"Google\u95a2\u9023"}},{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?cat=126#listItem","position":2,"name":"Google\u95a2\u9023","item":"https:\/\/www.ka-net.org\/blog\/?cat=126","nextItem":{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?p=4754#listItem","name":"Google Apps Script\u3067VoiceText Web API\u3092\u547c\u3073\u51fa\u3059\u3002"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?p=4754#listItem","position":3,"name":"Google Apps Script\u3067VoiceText Web API\u3092\u547c\u3073\u51fa\u3059\u3002","previousItem":{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?cat=126#listItem","name":"Google\u95a2\u9023"}}]},{"@type":"Organization","@id":"https:\/\/www.ka-net.org\/blog\/#organization","name":"\u521d\u5fc3\u8005\u5099\u5fd8\u9332","description":"Power Automate for desktop\u3084Microsoft Office\u958b\u767a\u306e\u60c5\u5831\u304c\u6e80\u8f09","url":"https:\/\/www.ka-net.org\/blog\/"},{"@type":"Person","@id":"https:\/\/www.ka-net.org\/blog\/?author=1#author","url":"https:\/\/www.ka-net.org\/blog\/?author=1","name":"\u304d\u306c\u3042\u3055","image":{"@type":"ImageObject","@id":"https:\/\/www.ka-net.org\/blog\/?p=4754#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/1c6237fc3012b3da1f36fa6435b2ccea656e2ff69a51f709c7d8352c69356dc3?s=96&d=mm&r=g","width":96,"height":96,"caption":"\u304d\u306c\u3042\u3055"}},{"@type":"WebPage","@id":"https:\/\/www.ka-net.org\/blog\/?p=4754#webpage","url":"https:\/\/www.ka-net.org\/blog\/?p=4754","name":"Google Apps Script\u3067VoiceText Web API\u3092\u547c\u3073\u51fa\u3059\u3002 | \u521d\u5fc3\u8005\u5099\u5fd8\u9332","description":"\u30fb\u30e2\u30e4\u3055\u307e\u306e\u30b7\u30e7\u30a6\u541b\u306b\u3044\u308d\u3044\u308d\u558b\u3089\u305b\u308bVBA\u30de\u30af\u30ed(1) \/\/www.ka-net.org\/blog\/?p=4","inLanguage":"ja","isPartOf":{"@id":"https:\/\/www.ka-net.org\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/www.ka-net.org\/blog\/?p=4754#breadcrumblist"},"author":{"@id":"https:\/\/www.ka-net.org\/blog\/?author=1#author"},"creator":{"@id":"https:\/\/www.ka-net.org\/blog\/?author=1#author"},"image":{"@type":"ImageObject","url":"https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/eyecatch-Google.png","@id":"https:\/\/www.ka-net.org\/blog\/?p=4754\/#mainImage","width":790,"height":480},"primaryImageOfPage":{"@id":"https:\/\/www.ka-net.org\/blog\/?p=4754#mainImage"},"datePublished":"2014-08-21T15:08:33+09:00","dateModified":"2014-08-21T15:08:33+09:00"},{"@type":"WebSite","@id":"https:\/\/www.ka-net.org\/blog\/#website","url":"https:\/\/www.ka-net.org\/blog\/","name":"\u521d\u5fc3\u8005\u5099\u5fd8\u9332","description":"Power Automate for desktop\u3084Microsoft Office\u958b\u767a\u306e\u60c5\u5831\u304c\u6e80\u8f09","inLanguage":"ja","publisher":{"@id":"https:\/\/www.ka-net.org\/blog\/#organization"}}]},"og:locale":"ja_JP","og:site_name":"\u521d\u5fc3\u8005\u5099\u5fd8\u9332 | Power Automate for desktop\u3084Microsoft Office\u958b\u767a\u306e\u60c5\u5831\u304c\u6e80\u8f09","og:type":"article","og:title":"Google Apps Script\u3067VoiceText Web API\u3092\u547c\u3073\u51fa\u3059\u3002 | \u521d\u5fc3\u8005\u5099\u5fd8\u9332","og:description":"\u30fb\u30e2\u30e4\u3055\u307e\u306e\u30b7\u30e7\u30a6\u541b\u306b\u3044\u308d\u3044\u308d\u558b\u3089\u305b\u308bVBA\u30de\u30af\u30ed(1) \/\/www.ka-net.org\/blog\/?p=4","og:url":"https:\/\/www.ka-net.org\/blog\/?p=4754","article:published_time":"2014-08-21T06:08:33+00:00","article:modified_time":"2014-08-21T06:08:33+00:00","twitter:card":"summary","twitter:title":"Google Apps Script\u3067VoiceText Web API\u3092\u547c\u3073\u51fa\u3059\u3002 | \u521d\u5fc3\u8005\u5099\u5fd8\u9332","twitter:description":"\u30fb\u30e2\u30e4\u3055\u307e\u306e\u30b7\u30e7\u30a6\u541b\u306b\u3044\u308d\u3044\u308d\u558b\u3089\u305b\u308bVBA\u30de\u30af\u30ed(1) \/\/www.ka-net.org\/blog\/?p=4"},"aioseo_meta_data":{"post_id":"4754","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[],"defaultGraph":"","defaultPostTypeGraph":""},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2020-12-24 07:10:13","updated":"2022-09-14 04:29:13","seo_analyzer_scan_date":null,"focus_keyword":null,"additional_keywords":null,"truseo_locale":null},"jetpack_publicize_connections":[],"jetpack_featured_media_url":"https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/eyecatch-Google.png","jetpack_shortlink":"https:\/\/wp.me\/p4UZZr-1eG","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/posts\/4754","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=4754"}],"version-history":[{"count":3,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/posts\/4754\/revisions"}],"predecessor-version":[{"id":4763,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/posts\/4754\/revisions\/4763"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/media\/7113"}],"wp:attachment":[{"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=4754"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=4754"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=4754"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}