{"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_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}},"categories":[126],"tags":[],"class_list":["post-4754","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-google"],"aioseo_notices":[],"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}]}}