{"id":3728,"date":"2017-06-14T17:20:25","date_gmt":"2017-06-14T08:20:25","guid":{"rendered":"https:\/\/www.pistolfly.com\/weblog\/?p=3728"},"modified":"2018-10-29T12:11:14","modified_gmt":"2018-10-29T03:11:14","slug":"certificate-without-subjectaltname-causes-neterr_cert_common_name_invalid-error-on-chrome","status":"publish","type":"post","link":"https:\/\/www.pistolfly.com\/weblog\/en\/2017\/06\/certificate-without-subjectaltname-causes-neterr_cert_common_name_invalid-error-on-chrome.html","title":{"rendered":"Certificate without subjectAltName causes NET::ERR_CERT_COMMON_NAME_INVALID error on Chrome"},"content":{"rendered":"<p>When I visited a site that uses a self-signed SSL certificate for development environment with Chrome, \"Your connection is not private. NET::ERR_CERT_COMMON_NAME_INVALID\" error occurred.<\/p>\n<p><a href=\"https:\/\/i0.wp.com\/www.pistolfly.com\/weblog\/wp-content\/uploads\/2017\/06\/chrome_ERR_CERT_COMMON_NAME_INVALID.png?ssl=1\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-3714\" src=\"https:\/\/i0.wp.com\/www.pistolfly.com\/weblog\/wp-content\/uploads\/2017\/06\/chrome_ERR_CERT_COMMON_NAME_INVALID.png?resize=474%2C363&#038;ssl=1\" alt=\"\" width=\"474\" height=\"363\" srcset=\"https:\/\/i0.wp.com\/www.pistolfly.com\/weblog\/wp-content\/uploads\/2017\/06\/chrome_ERR_CERT_COMMON_NAME_INVALID.png?w=795&amp;ssl=1 795w, https:\/\/i0.wp.com\/www.pistolfly.com\/weblog\/wp-content\/uploads\/2017\/06\/chrome_ERR_CERT_COMMON_NAME_INVALID.png?resize=300%2C229&amp;ssl=1 300w, https:\/\/i0.wp.com\/www.pistolfly.com\/weblog\/wp-content\/uploads\/2017\/06\/chrome_ERR_CERT_COMMON_NAME_INVALID.png?resize=768%2C587&amp;ssl=1 768w\" sizes=\"auto, (max-width: 474px) 100vw, 474px\" \/><\/a><\/p>\n<p>Although I use a self-signed certificate, I installed it for the clients and trusted it. (Keychain Access on Mac and Certificate Manager on Windows.)<br \/>\nThe CN(Common Name) also matches the host name being accessed.<\/p>\n<p>There is no problem with browsers other than Chrome.<br \/>\nEven Chrome could access without problems, but suddenly it got an error.<\/p>\n<p>There is \"[missing_subjectAltName]\" in the error, so I thought the certificate without subjectAltName caused the error.<\/p>\n<h2>Cause<\/h2>\n<p>For Chrome 58 and later, only the subjectAlternativeName extension, not commonName, is used to match the domain name and site certificate. <\/p>\n<p><a href=\"https:\/\/support.google.com\/chrome\/a\/answer\/7391219?hl=en\" target=\"_blank\" rel=\"noopener\">https:\/\/support.google.com\/chrome\/a\/answer\/7391219?hl=en<\/a><\/p>\n<h2>Workaround<\/h2>\n<h3>Create self-signed certificate with subjectAltName extension<\/h3>\n<p>Copy openssl.cnf and set subjectAltName, use it on creating certificate.<\/p>\n<ol>\n<li>Copy openssl.cnf\uff08Below is example on Red Hat family. Change the path to openssl.cnf for other platforms.\uff09\n<pre class=\"command-line\">$ cp \/etc\/pki\/tls\/openssl.cnf my-server.example.com.cnf\r\n<\/pre>\n<\/li>\n<li>x509_extensions in [ req ] section is v3_ca. So it seems I should add subjectAltName in [ v3_ca ] section.\n<pre class=\"command-line\">$ vi my-server.example.com.cnf\r\n<\/pre>\n<pre class=\"prettyprint\">[ req ]\r\n...\r\nx509_extensions = v3_ca # The extentions to add to the self signed cert\r\n...\r\n<\/pre>\n<p>Add subjectAltName in [ v3_ca ] section.<\/p>\n<pre class=\"prettyprint\">[ v3_ca ]\r\n...\r\nsubjectAltName=DNS.1:my-server.example.com\r\n...\r\n<\/pre>\n<p>You can also set multiple subjectAltNames.<\/p>\n<pre class=\"prettyprint\">subjectAltName=DNS.1:my-server.example.com,DNS.2:my-server2.example.com\r\n<\/pre>\n<p>See `man 5 x509v3_config` for detail.\n<\/li>\n<li>Create private key\n<pre class=\"command-line\">$ openssl genrsa -out my-server.example.com.key 2048\r\n<\/pre>\n<\/li>\n<li>Create certificate\uff08<strong>Specify your cnf file for the -config option<\/strong>\uff09\n<pre class=\"command-line\">$ openssl req -new -x509 -days 36500 -sha256 -config my-server.example.com.cnf -key my-server.example.com.key -out my-server.example.com.crt\r\n<\/pre>\n<\/li>\n<\/ol>\n","protected":false},"excerpt":{"rendered":"<p>When I visited a site that uses a self-signed SSL certificate for development environment with Chrome, \"Your c &hellip; <a href=\"https:\/\/www.pistolfly.com\/weblog\/en\/2017\/06\/certificate-without-subjectaltname-causes-neterr_cert_common_name_invalid-error-on-chrome.html\" class=\"more-link\">Continue reading <span class=\"screen-reader-text\">Certificate without subjectAltName causes NET::ERR_CERT_COMMON_NAME_INVALID error on Chrome<\/span> <span class=\"meta-nav\">&rarr;<\/span><\/a><\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_locale":"en_US","_original_post":"3713","_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[19],"tags":[],"class_list":["post-3728","post","type-post","status-publish","format-standard","hentry","category-security","en-US"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Certificate without subjectAltName causes NET::ERR_CERT_COMMON_NAME_INVALID error on Chrome - Pistolfly<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.pistolfly.com\/weblog\/en\/2017\/06\/certificate-without-subjectaltname-causes-neterr_cert_common_name_invalid-error-on-chrome.html\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Certificate without subjectAltName causes NET::ERR_CERT_COMMON_NAME_INVALID error on Chrome - Pistolfly\" \/>\n<meta property=\"og:description\" content=\"When I visited a site that uses a self-signed SSL certificate for development environment with Chrome, &quot;Your c &hellip; Continue reading Certificate without subjectAltName causes NET::ERR_CERT_COMMON_NAME_INVALID error on Chrome &rarr;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.pistolfly.com\/weblog\/en\/2017\/06\/certificate-without-subjectaltname-causes-neterr_cert_common_name_invalid-error-on-chrome.html\" \/>\n<meta property=\"og:site_name\" content=\"Pistolfly\" \/>\n<meta property=\"article:published_time\" content=\"2017-06-14T08:20:25+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2018-10-29T03:11:14+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.pistolfly.com\/weblog\/wp-content\/uploads\/2017\/06\/chrome_ERR_CERT_COMMON_NAME_INVALID.png\" \/>\n<meta name=\"author\" content=\"Pistolfly\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Pistolfly\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.pistolfly.com\\\/weblog\\\/en\\\/2017\\\/06\\\/certificate-without-subjectaltname-causes-neterr_cert_common_name_invalid-error-on-chrome.html#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.pistolfly.com\\\/weblog\\\/en\\\/2017\\\/06\\\/certificate-without-subjectaltname-causes-neterr_cert_common_name_invalid-error-on-chrome.html\"},\"author\":{\"name\":\"Pistolfly\",\"@id\":\"https:\\\/\\\/www.pistolfly.com\\\/weblog\\\/#\\\/schema\\\/person\\\/e779e918730b507907b3a35b77a9a2ab\"},\"headline\":\"Certificate without subjectAltName causes NET::ERR_CERT_COMMON_NAME_INVALID error on Chrome\",\"datePublished\":\"2017-06-14T08:20:25+00:00\",\"dateModified\":\"2018-10-29T03:11:14+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.pistolfly.com\\\/weblog\\\/en\\\/2017\\\/06\\\/certificate-without-subjectaltname-causes-neterr_cert_common_name_invalid-error-on-chrome.html\"},\"wordCount\":233,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.pistolfly.com\\\/weblog\\\/#\\\/schema\\\/person\\\/e779e918730b507907b3a35b77a9a2ab\"},\"image\":{\"@id\":\"https:\\\/\\\/www.pistolfly.com\\\/weblog\\\/en\\\/2017\\\/06\\\/certificate-without-subjectaltname-causes-neterr_cert_common_name_invalid-error-on-chrome.html#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.pistolfly.com\\\/weblog\\\/wp-content\\\/uploads\\\/2017\\\/06\\\/chrome_ERR_CERT_COMMON_NAME_INVALID.png\",\"articleSection\":[\"security\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.pistolfly.com\\\/weblog\\\/en\\\/2017\\\/06\\\/certificate-without-subjectaltname-causes-neterr_cert_common_name_invalid-error-on-chrome.html#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.pistolfly.com\\\/weblog\\\/en\\\/2017\\\/06\\\/certificate-without-subjectaltname-causes-neterr_cert_common_name_invalid-error-on-chrome.html\",\"url\":\"https:\\\/\\\/www.pistolfly.com\\\/weblog\\\/en\\\/2017\\\/06\\\/certificate-without-subjectaltname-causes-neterr_cert_common_name_invalid-error-on-chrome.html\",\"name\":\"Certificate without subjectAltName causes NET::ERR_CERT_COMMON_NAME_INVALID error on Chrome - Pistolfly\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.pistolfly.com\\\/weblog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.pistolfly.com\\\/weblog\\\/en\\\/2017\\\/06\\\/certificate-without-subjectaltname-causes-neterr_cert_common_name_invalid-error-on-chrome.html#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.pistolfly.com\\\/weblog\\\/en\\\/2017\\\/06\\\/certificate-without-subjectaltname-causes-neterr_cert_common_name_invalid-error-on-chrome.html#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.pistolfly.com\\\/weblog\\\/wp-content\\\/uploads\\\/2017\\\/06\\\/chrome_ERR_CERT_COMMON_NAME_INVALID.png\",\"datePublished\":\"2017-06-14T08:20:25+00:00\",\"dateModified\":\"2018-10-29T03:11:14+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.pistolfly.com\\\/weblog\\\/en\\\/2017\\\/06\\\/certificate-without-subjectaltname-causes-neterr_cert_common_name_invalid-error-on-chrome.html#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.pistolfly.com\\\/weblog\\\/en\\\/2017\\\/06\\\/certificate-without-subjectaltname-causes-neterr_cert_common_name_invalid-error-on-chrome.html\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.pistolfly.com\\\/weblog\\\/en\\\/2017\\\/06\\\/certificate-without-subjectaltname-causes-neterr_cert_common_name_invalid-error-on-chrome.html#primaryimage\",\"url\":\"https:\\\/\\\/i0.wp.com\\\/www.pistolfly.com\\\/weblog\\\/wp-content\\\/uploads\\\/2017\\\/06\\\/chrome_ERR_CERT_COMMON_NAME_INVALID.png?fit=795%2C608&ssl=1\",\"contentUrl\":\"https:\\\/\\\/i0.wp.com\\\/www.pistolfly.com\\\/weblog\\\/wp-content\\\/uploads\\\/2017\\\/06\\\/chrome_ERR_CERT_COMMON_NAME_INVALID.png?fit=795%2C608&ssl=1\",\"width\":795,\"height\":608},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.pistolfly.com\\\/weblog\\\/en\\\/2017\\\/06\\\/certificate-without-subjectaltname-causes-neterr_cert_common_name_invalid-error-on-chrome.html#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u30db\u30fc\u30e0\",\"item\":\"https:\\\/\\\/www.pistolfly.com\\\/weblog\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Certificate without subjectAltName causes NET::ERR_CERT_COMMON_NAME_INVALID error on Chrome\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.pistolfly.com\\\/weblog\\\/#website\",\"url\":\"https:\\\/\\\/www.pistolfly.com\\\/weblog\\\/\",\"name\":\"Pistolfly\",\"description\":\"Developer Blog\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.pistolfly.com\\\/weblog\\\/#\\\/schema\\\/person\\\/e779e918730b507907b3a35b77a9a2ab\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.pistolfly.com\\\/weblog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/www.pistolfly.com\\\/weblog\\\/#\\\/schema\\\/person\\\/e779e918730b507907b3a35b77a9a2ab\",\"name\":\"Pistolfly\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0b3ddb2859adabf28a2b97ae9fff98772ddffc46088d11cad2b9a2cef66115e7?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0b3ddb2859adabf28a2b97ae9fff98772ddffc46088d11cad2b9a2cef66115e7?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0b3ddb2859adabf28a2b97ae9fff98772ddffc46088d11cad2b9a2cef66115e7?s=96&d=mm&r=g\",\"caption\":\"Pistolfly\"},\"logo\":{\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0b3ddb2859adabf28a2b97ae9fff98772ddffc46088d11cad2b9a2cef66115e7?s=96&d=mm&r=g\"},\"description\":\"Software Engineer in Tokyo, Japan\",\"url\":\"https:\\\/\\\/www.pistolfly.com\\\/weblog\\\/author\\\/pistolfly\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Certificate without subjectAltName causes NET::ERR_CERT_COMMON_NAME_INVALID error on Chrome - Pistolfly","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.pistolfly.com\/weblog\/en\/2017\/06\/certificate-without-subjectaltname-causes-neterr_cert_common_name_invalid-error-on-chrome.html","og_locale":"en_US","og_type":"article","og_title":"Certificate without subjectAltName causes NET::ERR_CERT_COMMON_NAME_INVALID error on Chrome - Pistolfly","og_description":"When I visited a site that uses a self-signed SSL certificate for development environment with Chrome, \"Your c &hellip; Continue reading Certificate without subjectAltName causes NET::ERR_CERT_COMMON_NAME_INVALID error on Chrome &rarr;","og_url":"https:\/\/www.pistolfly.com\/weblog\/en\/2017\/06\/certificate-without-subjectaltname-causes-neterr_cert_common_name_invalid-error-on-chrome.html","og_site_name":"Pistolfly","article_published_time":"2017-06-14T08:20:25+00:00","article_modified_time":"2018-10-29T03:11:14+00:00","og_image":[{"url":"https:\/\/www.pistolfly.com\/weblog\/wp-content\/uploads\/2017\/06\/chrome_ERR_CERT_COMMON_NAME_INVALID.png","type":"","width":"","height":""}],"author":"Pistolfly","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Pistolfly","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.pistolfly.com\/weblog\/en\/2017\/06\/certificate-without-subjectaltname-causes-neterr_cert_common_name_invalid-error-on-chrome.html#article","isPartOf":{"@id":"https:\/\/www.pistolfly.com\/weblog\/en\/2017\/06\/certificate-without-subjectaltname-causes-neterr_cert_common_name_invalid-error-on-chrome.html"},"author":{"name":"Pistolfly","@id":"https:\/\/www.pistolfly.com\/weblog\/#\/schema\/person\/e779e918730b507907b3a35b77a9a2ab"},"headline":"Certificate without subjectAltName causes NET::ERR_CERT_COMMON_NAME_INVALID error on Chrome","datePublished":"2017-06-14T08:20:25+00:00","dateModified":"2018-10-29T03:11:14+00:00","mainEntityOfPage":{"@id":"https:\/\/www.pistolfly.com\/weblog\/en\/2017\/06\/certificate-without-subjectaltname-causes-neterr_cert_common_name_invalid-error-on-chrome.html"},"wordCount":233,"commentCount":0,"publisher":{"@id":"https:\/\/www.pistolfly.com\/weblog\/#\/schema\/person\/e779e918730b507907b3a35b77a9a2ab"},"image":{"@id":"https:\/\/www.pistolfly.com\/weblog\/en\/2017\/06\/certificate-without-subjectaltname-causes-neterr_cert_common_name_invalid-error-on-chrome.html#primaryimage"},"thumbnailUrl":"https:\/\/www.pistolfly.com\/weblog\/wp-content\/uploads\/2017\/06\/chrome_ERR_CERT_COMMON_NAME_INVALID.png","articleSection":["security"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.pistolfly.com\/weblog\/en\/2017\/06\/certificate-without-subjectaltname-causes-neterr_cert_common_name_invalid-error-on-chrome.html#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.pistolfly.com\/weblog\/en\/2017\/06\/certificate-without-subjectaltname-causes-neterr_cert_common_name_invalid-error-on-chrome.html","url":"https:\/\/www.pistolfly.com\/weblog\/en\/2017\/06\/certificate-without-subjectaltname-causes-neterr_cert_common_name_invalid-error-on-chrome.html","name":"Certificate without subjectAltName causes NET::ERR_CERT_COMMON_NAME_INVALID error on Chrome - Pistolfly","isPartOf":{"@id":"https:\/\/www.pistolfly.com\/weblog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.pistolfly.com\/weblog\/en\/2017\/06\/certificate-without-subjectaltname-causes-neterr_cert_common_name_invalid-error-on-chrome.html#primaryimage"},"image":{"@id":"https:\/\/www.pistolfly.com\/weblog\/en\/2017\/06\/certificate-without-subjectaltname-causes-neterr_cert_common_name_invalid-error-on-chrome.html#primaryimage"},"thumbnailUrl":"https:\/\/www.pistolfly.com\/weblog\/wp-content\/uploads\/2017\/06\/chrome_ERR_CERT_COMMON_NAME_INVALID.png","datePublished":"2017-06-14T08:20:25+00:00","dateModified":"2018-10-29T03:11:14+00:00","breadcrumb":{"@id":"https:\/\/www.pistolfly.com\/weblog\/en\/2017\/06\/certificate-without-subjectaltname-causes-neterr_cert_common_name_invalid-error-on-chrome.html#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.pistolfly.com\/weblog\/en\/2017\/06\/certificate-without-subjectaltname-causes-neterr_cert_common_name_invalid-error-on-chrome.html"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.pistolfly.com\/weblog\/en\/2017\/06\/certificate-without-subjectaltname-causes-neterr_cert_common_name_invalid-error-on-chrome.html#primaryimage","url":"https:\/\/i0.wp.com\/www.pistolfly.com\/weblog\/wp-content\/uploads\/2017\/06\/chrome_ERR_CERT_COMMON_NAME_INVALID.png?fit=795%2C608&ssl=1","contentUrl":"https:\/\/i0.wp.com\/www.pistolfly.com\/weblog\/wp-content\/uploads\/2017\/06\/chrome_ERR_CERT_COMMON_NAME_INVALID.png?fit=795%2C608&ssl=1","width":795,"height":608},{"@type":"BreadcrumbList","@id":"https:\/\/www.pistolfly.com\/weblog\/en\/2017\/06\/certificate-without-subjectaltname-causes-neterr_cert_common_name_invalid-error-on-chrome.html#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u30db\u30fc\u30e0","item":"https:\/\/www.pistolfly.com\/weblog"},{"@type":"ListItem","position":2,"name":"Certificate without subjectAltName causes NET::ERR_CERT_COMMON_NAME_INVALID error on Chrome"}]},{"@type":"WebSite","@id":"https:\/\/www.pistolfly.com\/weblog\/#website","url":"https:\/\/www.pistolfly.com\/weblog\/","name":"Pistolfly","description":"Developer Blog","publisher":{"@id":"https:\/\/www.pistolfly.com\/weblog\/#\/schema\/person\/e779e918730b507907b3a35b77a9a2ab"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.pistolfly.com\/weblog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/www.pistolfly.com\/weblog\/#\/schema\/person\/e779e918730b507907b3a35b77a9a2ab","name":"Pistolfly","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/0b3ddb2859adabf28a2b97ae9fff98772ddffc46088d11cad2b9a2cef66115e7?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/0b3ddb2859adabf28a2b97ae9fff98772ddffc46088d11cad2b9a2cef66115e7?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/0b3ddb2859adabf28a2b97ae9fff98772ddffc46088d11cad2b9a2cef66115e7?s=96&d=mm&r=g","caption":"Pistolfly"},"logo":{"@id":"https:\/\/secure.gravatar.com\/avatar\/0b3ddb2859adabf28a2b97ae9fff98772ddffc46088d11cad2b9a2cef66115e7?s=96&d=mm&r=g"},"description":"Software Engineer in Tokyo, Japan","url":"https:\/\/www.pistolfly.com\/weblog\/author\/pistolfly"}]}},"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/paorzz-Y8","jetpack-related-posts":[],"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.pistolfly.com\/weblog\/wp-json\/wp\/v2\/posts\/3728","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.pistolfly.com\/weblog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.pistolfly.com\/weblog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.pistolfly.com\/weblog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.pistolfly.com\/weblog\/wp-json\/wp\/v2\/comments?post=3728"}],"version-history":[{"count":12,"href":"https:\/\/www.pistolfly.com\/weblog\/wp-json\/wp\/v2\/posts\/3728\/revisions"}],"predecessor-version":[{"id":3768,"href":"https:\/\/www.pistolfly.com\/weblog\/wp-json\/wp\/v2\/posts\/3728\/revisions\/3768"}],"wp:attachment":[{"href":"https:\/\/www.pistolfly.com\/weblog\/wp-json\/wp\/v2\/media?parent=3728"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.pistolfly.com\/weblog\/wp-json\/wp\/v2\/categories?post=3728"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.pistolfly.com\/weblog\/wp-json\/wp\/v2\/tags?post=3728"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}