{"id":404,"date":"2023-03-07T12:29:12","date_gmt":"2023-03-07T12:29:12","guid":{"rendered":"https:\/\/certerassl.com\/kb\/?p=404"},"modified":"2024-10-16T07:52:52","modified_gmt":"2024-10-16T07:52:52","slug":"how-to-install-ssl-on-node-js","status":"publish","type":"post","link":"https:\/\/certera.com\/kb\/how-to-install-ssl-on-node-js\/","title":{"rendered":"How to Install SSL Certificate on Node.js?"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">This article provides instructions on installing an SSL certificate on Node.js, which involves configuring all the necessary certificate files, including root, intermediate, &amp; primary certificates. These files should be available in an archived folder provided by your CA (Certificate Authority).<\/p>\n\n\n\n<div class=\"wp-block-columns custom-html-widget-bg is-layout-flex wp-container-core-columns-is-layout-8f761849 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33.33%\">\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"190\" height=\"122\" sizes=\"(max-width: 190px) 100vw, 190px\" src=\"https:\/\/certera.com\/kb\/wp-content\/uploads\/2023\/08\/ssl-icon-jpg.webp\" alt=\"\" class=\"wp-image-1184\"\/><\/figure>\n<\/div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:66.66%\">\n<p class=\"wp-block-paragraph\">Upgrade your Domain Security with Affordable and Trusted SSL Certificates from Certera starting at just <strong>$3.99\/year<\/strong><\/p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button custom-html-widget-btn\"><a class=\"wp-block-button__link has-white-color has-text-color wp-element-button\" href=\"https:\/\/certera.com\/buy-ssl-certificates\">Buy SSL Certificates<\/a><\/div>\n<\/div>\n<\/div>\n<\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Let&#8217;s Start with Generating CSR<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">To get an SSL Certificate for Node.js, you must generate a CSR (Certificate Signing Request) containing your organization\/website details.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Follow <a href=\"https:\/\/certera.com\/kb\/how-to-generate-csr-in-node-js\/\">Process for Generating CSR in Node.JS<\/a>[Manually]<\/li>\n\n\n\n<li>Use our <a href=\"https:\/\/certera.com\/ssl-tools\/csr-generator\">CSR Generator tool<\/a> to automatically create your CSR and Private Key files.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">SSL Certificate Installation on Node.js<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Here is a step-by-step guide to install SSL certificates on Node.js.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 1: Be ready with the Certificate Files<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Make sure that you have the primary certificate for your domain (.crt extension), the root certificate (.crt), the CA Bundle file containing the root and intermediate certificates (.ca-bundle extension), and your private key generated along with CSR (.key extension).<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 2: Create an HTTPS server in Node.js:<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">In your command line, use the following values to create your HTTPS server. We have used server.js file name of the JS File, you can use your file name.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#vim server.js\nvar https = require('https');\nvar fs = require('fs');\n\nvar https_options = {\n    key: fs.readFileSync('\/path\/to\/private.key'),\n    cert: fs.readFileSync('\/path\/to\/your_domain_name.crt'),\n    ca: &#91;\n        fs.readFileSync('\/path\/to\/CA_root.crt'),\n        fs.readFileSync('\/path\/to\/ca_bundle_certificate.crt')\n    ]\n};\nhttps.createServer(options, function (req, res) {\n    res.writeHead(200);\n    res.end('Welcome to Node.js HTTPS Server');\n}).listen(8443);\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">You will need to replace the following commands with pathways about your file:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 3: Enable SSL Certificate<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Activate your SSL certificate on Node.js by running the following command.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>node server.js<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Test your SSL installation for potential errors or vulnerabilities using an <a href=\"https:\/\/certera.com\/ssl-tools\/ssl-checker\">SSL checker tool<\/a>.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">That&#8217;s it! Once you have completed these steps, your SSL certificate should be installed and functioning on your Node.js server.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This article provides instructions on installing an SSL certificate on Node.js, which involves configuring all the necessary certificate files, including root, intermediate, &amp; primary certificates. These files should be available in an archived folder provided by your CA (Certificate Authority). Upgrade your Domain Security with Affordable and Trusted SSL Certificates from Certera starting at just<span class=\"morelink d-block mt-3\"><a href=\"https:\/\/certera.com\/kb\/how-to-install-ssl-on-node-js\/\">Read More<\/a><\/span><\/p>\n","protected":false},"author":1,"featured_media":1088,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[15],"tags":[40,18,19],"class_list":["post-404","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-ssl-installation","tag-nodejs","tag-ssl","tag-ssl-installation","entry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Install SSL Certificate on Node.JS Server<\/title>\n<meta name=\"description\" content=\"Step by Step Process to Install SSL Certificate on Node.JS Server within minutes. Enable HTTPS on your website.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/certera.com\/kb\/how-to-install-ssl-on-node-js\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install SSL Certificate on Node.JS Server\" \/>\n<meta property=\"og:description\" content=\"Step by Step Process to Install SSL Certificate on Node.JS Server within minutes. Enable HTTPS on your website.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/certera.com\/kb\/how-to-install-ssl-on-node-js\/\" \/>\n<meta property=\"og:site_name\" content=\"Knowledge Base - Certera.com\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/certeraLLC\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-03-07T12:29:12+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-10-16T07:52:52+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/certera.com\/kb\/wp-content\/uploads\/2023\/03\/install-ssl-certificate-on-nodejs-1-jpg.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"960\" \/>\n\t<meta property=\"og:image:height\" content=\"620\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"certerakbdbuser\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/certera.com\/kb\/wp-content\/uploads\/2023\/03\/install-ssl-certificate-on-nodejs-1-jpg.webp\" \/>\n<meta name=\"twitter:creator\" content=\"@certera_llc\" \/>\n<meta name=\"twitter:site\" content=\"@certera_llc\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"certerakbdbuser\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/how-to-install-ssl-on-node-js\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/how-to-install-ssl-on-node-js\\\/\"},\"author\":{\"name\":\"certerakbdbuser\",\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/#\\\/schema\\\/person\\\/c25e1519e333a817f30c805384cba014\"},\"headline\":\"How to Install SSL Certificate on Node.js?\",\"datePublished\":\"2023-03-07T12:29:12+00:00\",\"dateModified\":\"2024-10-16T07:52:52+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/how-to-install-ssl-on-node-js\\\/\"},\"wordCount\":285,\"publisher\":{\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/how-to-install-ssl-on-node-js\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/certera.com\\\/kb\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/install-ssl-certificate-on-nodejs-1-jpg.webp\",\"keywords\":[\"NodeJS\",\"SSL\",\"SSL Installation\"],\"articleSection\":[\"SSL Installation\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/how-to-install-ssl-on-node-js\\\/\",\"url\":\"https:\\\/\\\/certera.com\\\/kb\\\/how-to-install-ssl-on-node-js\\\/\",\"name\":\"How to Install SSL Certificate on Node.JS Server\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/how-to-install-ssl-on-node-js\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/how-to-install-ssl-on-node-js\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/certera.com\\\/kb\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/install-ssl-certificate-on-nodejs-1-jpg.webp\",\"datePublished\":\"2023-03-07T12:29:12+00:00\",\"dateModified\":\"2024-10-16T07:52:52+00:00\",\"description\":\"Step by Step Process to Install SSL Certificate on Node.JS Server within minutes. Enable HTTPS on your website.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/how-to-install-ssl-on-node-js\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/certera.com\\\/kb\\\/how-to-install-ssl-on-node-js\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/how-to-install-ssl-on-node-js\\\/#primaryimage\",\"url\":\"https:\\\/\\\/certera.com\\\/kb\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/install-ssl-certificate-on-nodejs-1-jpg.webp\",\"contentUrl\":\"https:\\\/\\\/certera.com\\\/kb\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/install-ssl-certificate-on-nodejs-1-jpg.webp\",\"width\":960,\"height\":620,\"caption\":\"Install SSL On NodeJS\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/how-to-install-ssl-on-node-js\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/certera.com\\\/kb\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install SSL Certificate on Node.js?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/#website\",\"url\":\"https:\\\/\\\/certera.com\\\/kb\\\/\",\"name\":\"Knowledge Base - Certera.com\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/#organization\"},\"alternateName\":\"Certera Knowledgebase\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/certera.com\\\/kb\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/#organization\",\"name\":\"Certera\",\"url\":\"https:\\\/\\\/certera.com\\\/kb\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/certera.com\\\/kb\\\/wp-content\\\/uploads\\\/2023\\\/01\\\/brand-certera.svg\",\"contentUrl\":\"https:\\\/\\\/certera.com\\\/kb\\\/wp-content\\\/uploads\\\/2023\\\/01\\\/brand-certera.svg\",\"caption\":\"Certera\"},\"image\":{\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/certeraLLC\\\/\",\"https:\\\/\\\/x.com\\\/certera_llc\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/certera-llc\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/#\\\/schema\\\/person\\\/c25e1519e333a817f30c805384cba014\",\"name\":\"certerakbdbuser\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/1fba817ef81065f1393461fc3a0d85c40f2cc826919819ea4df4b12d76566e62?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/1fba817ef81065f1393461fc3a0d85c40f2cc826919819ea4df4b12d76566e62?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/1fba817ef81065f1393461fc3a0d85c40f2cc826919819ea4df4b12d76566e62?s=96&d=mm&r=g\",\"caption\":\"certerakbdbuser\"},\"sameAs\":[\"https:\\\/\\\/certerakb.ssltoolsonline.com\"],\"url\":\"https:\\\/\\\/certera.com\\\/kb\\\/author\\\/certerakbdbuser\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install SSL Certificate on Node.JS Server","description":"Step by Step Process to Install SSL Certificate on Node.JS Server within minutes. Enable HTTPS on your website.","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:\/\/certera.com\/kb\/how-to-install-ssl-on-node-js\/","og_locale":"en_US","og_type":"article","og_title":"How to Install SSL Certificate on Node.JS Server","og_description":"Step by Step Process to Install SSL Certificate on Node.JS Server within minutes. Enable HTTPS on your website.","og_url":"https:\/\/certera.com\/kb\/how-to-install-ssl-on-node-js\/","og_site_name":"Knowledge Base - Certera.com","article_publisher":"https:\/\/www.facebook.com\/certeraLLC\/","article_published_time":"2023-03-07T12:29:12+00:00","article_modified_time":"2024-10-16T07:52:52+00:00","og_image":[{"width":960,"height":620,"url":"https:\/\/certera.com\/kb\/wp-content\/uploads\/2023\/03\/install-ssl-certificate-on-nodejs-1-jpg.webp","type":"image\/jpeg"}],"author":"certerakbdbuser","twitter_card":"summary_large_image","twitter_image":"https:\/\/certera.com\/kb\/wp-content\/uploads\/2023\/03\/install-ssl-certificate-on-nodejs-1-jpg.webp","twitter_creator":"@certera_llc","twitter_site":"@certera_llc","twitter_misc":{"Written by":"certerakbdbuser","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/certera.com\/kb\/how-to-install-ssl-on-node-js\/#article","isPartOf":{"@id":"https:\/\/certera.com\/kb\/how-to-install-ssl-on-node-js\/"},"author":{"name":"certerakbdbuser","@id":"https:\/\/certera.com\/kb\/#\/schema\/person\/c25e1519e333a817f30c805384cba014"},"headline":"How to Install SSL Certificate on Node.js?","datePublished":"2023-03-07T12:29:12+00:00","dateModified":"2024-10-16T07:52:52+00:00","mainEntityOfPage":{"@id":"https:\/\/certera.com\/kb\/how-to-install-ssl-on-node-js\/"},"wordCount":285,"publisher":{"@id":"https:\/\/certera.com\/kb\/#organization"},"image":{"@id":"https:\/\/certera.com\/kb\/how-to-install-ssl-on-node-js\/#primaryimage"},"thumbnailUrl":"https:\/\/certera.com\/kb\/wp-content\/uploads\/2023\/03\/install-ssl-certificate-on-nodejs-1-jpg.webp","keywords":["NodeJS","SSL","SSL Installation"],"articleSection":["SSL Installation"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/certera.com\/kb\/how-to-install-ssl-on-node-js\/","url":"https:\/\/certera.com\/kb\/how-to-install-ssl-on-node-js\/","name":"How to Install SSL Certificate on Node.JS Server","isPartOf":{"@id":"https:\/\/certera.com\/kb\/#website"},"primaryImageOfPage":{"@id":"https:\/\/certera.com\/kb\/how-to-install-ssl-on-node-js\/#primaryimage"},"image":{"@id":"https:\/\/certera.com\/kb\/how-to-install-ssl-on-node-js\/#primaryimage"},"thumbnailUrl":"https:\/\/certera.com\/kb\/wp-content\/uploads\/2023\/03\/install-ssl-certificate-on-nodejs-1-jpg.webp","datePublished":"2023-03-07T12:29:12+00:00","dateModified":"2024-10-16T07:52:52+00:00","description":"Step by Step Process to Install SSL Certificate on Node.JS Server within minutes. Enable HTTPS on your website.","breadcrumb":{"@id":"https:\/\/certera.com\/kb\/how-to-install-ssl-on-node-js\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/certera.com\/kb\/how-to-install-ssl-on-node-js\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/certera.com\/kb\/how-to-install-ssl-on-node-js\/#primaryimage","url":"https:\/\/certera.com\/kb\/wp-content\/uploads\/2023\/03\/install-ssl-certificate-on-nodejs-1-jpg.webp","contentUrl":"https:\/\/certera.com\/kb\/wp-content\/uploads\/2023\/03\/install-ssl-certificate-on-nodejs-1-jpg.webp","width":960,"height":620,"caption":"Install SSL On NodeJS"},{"@type":"BreadcrumbList","@id":"https:\/\/certera.com\/kb\/how-to-install-ssl-on-node-js\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/certera.com\/kb\/"},{"@type":"ListItem","position":2,"name":"How to Install SSL Certificate on Node.js?"}]},{"@type":"WebSite","@id":"https:\/\/certera.com\/kb\/#website","url":"https:\/\/certera.com\/kb\/","name":"Knowledge Base - Certera.com","description":"","publisher":{"@id":"https:\/\/certera.com\/kb\/#organization"},"alternateName":"Certera Knowledgebase","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/certera.com\/kb\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/certera.com\/kb\/#organization","name":"Certera","url":"https:\/\/certera.com\/kb\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/certera.com\/kb\/#\/schema\/logo\/image\/","url":"https:\/\/certera.com\/kb\/wp-content\/uploads\/2023\/01\/brand-certera.svg","contentUrl":"https:\/\/certera.com\/kb\/wp-content\/uploads\/2023\/01\/brand-certera.svg","caption":"Certera"},"image":{"@id":"https:\/\/certera.com\/kb\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/certeraLLC\/","https:\/\/x.com\/certera_llc","https:\/\/www.linkedin.com\/company\/certera-llc\/"]},{"@type":"Person","@id":"https:\/\/certera.com\/kb\/#\/schema\/person\/c25e1519e333a817f30c805384cba014","name":"certerakbdbuser","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/1fba817ef81065f1393461fc3a0d85c40f2cc826919819ea4df4b12d76566e62?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/1fba817ef81065f1393461fc3a0d85c40f2cc826919819ea4df4b12d76566e62?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/1fba817ef81065f1393461fc3a0d85c40f2cc826919819ea4df4b12d76566e62?s=96&d=mm&r=g","caption":"certerakbdbuser"},"sameAs":["https:\/\/certerakb.ssltoolsonline.com"],"url":"https:\/\/certera.com\/kb\/author\/certerakbdbuser\/"}]}},"_links":{"self":[{"href":"https:\/\/certera.com\/kb\/wp-json\/wp\/v2\/posts\/404","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/certera.com\/kb\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/certera.com\/kb\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/certera.com\/kb\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/certera.com\/kb\/wp-json\/wp\/v2\/comments?post=404"}],"version-history":[{"count":9,"href":"https:\/\/certera.com\/kb\/wp-json\/wp\/v2\/posts\/404\/revisions"}],"predecessor-version":[{"id":2614,"href":"https:\/\/certera.com\/kb\/wp-json\/wp\/v2\/posts\/404\/revisions\/2614"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/certera.com\/kb\/wp-json\/wp\/v2\/media\/1088"}],"wp:attachment":[{"href":"https:\/\/certera.com\/kb\/wp-json\/wp\/v2\/media?parent=404"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/certera.com\/kb\/wp-json\/wp\/v2\/categories?post=404"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/certera.com\/kb\/wp-json\/wp\/v2\/tags?post=404"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}