{"id":937,"date":"2019-10-25T21:19:32","date_gmt":"2019-10-25T21:19:32","guid":{"rendered":"https:\/\/sectigostore.com\/page\/?p=937"},"modified":"2024-07-01T10:05:56","modified_gmt":"2024-07-01T10:05:56","slug":"what-is-an-ssl-certificate_verify_failed-error-and-how-do-i-resolve-it","status":"publish","type":"post","link":"https:\/\/sectigostore.com\/page\/what-is-an-ssl-certificate_verify_failed-error-and-how-do-i-resolve-it\/","title":{"rendered":"What is an SSL \u2018Certificate_Verify_Failed\u2019 Error and How Do I Resolve It?"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">We know setting up SSL certificates with Python can be confusing \u2014 that\u2019s\nwhy we\u2019re here to help <\/h2>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"alignright is-resized\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"640\" src=\"https:\/\/sectigostore.com\/page\/wp-content\/uploads\/2019\/10\/python-graphic-1024x640.jpg\" alt=\"graphic: ssl certificate_verify_failed error instructions for how to fix the issue\" class=\"wp-image-939\" style=\"width:414px;height:259px\" srcset=\"https:\/\/sectigostore.com\/page\/wp-content\/uploads\/2019\/10\/python-graphic-1024x640.jpg 1024w, https:\/\/sectigostore.com\/page\/wp-content\/uploads\/2019\/10\/python-graphic-300x187.jpg 300w, https:\/\/sectigostore.com\/page\/wp-content\/uploads\/2019\/10\/python-graphic-768x480.jpg 768w, https:\/\/sectigostore.com\/page\/wp-content\/uploads\/2019\/10\/python-graphic.jpg 1429w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n<\/div>\n\n\n<p class=\"wp-block-paragraph\">When you\u2019re dealing with <a href=\"https:\/\/www.python.org\/\">Python<\/a> or any programming language at all, there\u2019s plenty of room for mistakes to be made or technical errors to occur. Among these potential errors is the Python SSL \u201ccertificate_verify_failed\u201d error. Getting this error can be frustrating, especially if you\u2019ve done your best to ensure that everything is done right.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">When dealing with this error, it\u2019s\nimportant to know that it isn\u2019t hard to solve \u2014 but it does require patience. <\/p>\n\n\n\n<p class=\"wp-block-paragraph\">That being said, before you can\nfix the issue, you need to understand why it occurs in the first place. Let\u2019s\ndive into the reasons this error occurs, as well as what you can do to address\nit.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What Causes an SSL Certificate_Verify_Failed Error?<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">SSL certificate_verify_failed errors typically occur as a result of outdated Python default certificates or invalid root certificates. If you\u2019re a website owner and you\u2019re receiving this error, it could be because you\u2019re not using a valid SSL certificate. Here\u2019s where you can get one:<\/p>\n\n\n\n<div class=\"graysection\">\n<h2>Buy an SSL Certificate Starting at $8.95 Per Year!<\/h2>\n<p>Get the best deals on SSL certificates from SectigoStore.com.<\/p>\n<a class=\"greenbutton\" style=\"text-decoration: none;\" href=\"https:\/\/sectigostore.com\/ssl-certificates\">Shop Now<\/a>\n<\/div>\n\n\n\n<p class=\"wp-block-paragraph\">Since this error is usually paired\nto web page scrapers in Python, let\u2019s assume that this is a typical scenario\nwhere the error happens:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">First, imagine you\u2019re trying to\nscrape a page. You fire the scraper up, only to be met with an error page. <\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Don\u2019t worry, though. This issue\ncan be resolved with a simple command, which we\u2019ll get to shortly. <\/p>\n\n\n\n<p class=\"wp-block-paragraph\">But what causes the error? The\nissue comes from your web browser attempting to download a program that it will\nnot let it download because of the expired <a href=\"https:\/\/sectigostore.com\/ssl-support\/faqs\">SSL certificates<\/a> that came\nwith your version of Python. (Since that version of SSL is no longer deemed\n\u201csafe\u201d by Python, your end users receive the warning message.) <\/p>\n\n\n\n<div class=\"graysection\">\n\n<a class=\"greenbutton\" style=\"text-decoration: none;\" href=\"https:\/\/sectigostore.com\/blog\/what-is-hsts-and-why-should-your-organization-use-it\/\">What is HSTS and Why Should Your Organization Use It<\/a>\n\n<\/div>\n\n\n\n<h2 class=\"wp-block-heading\">How Can I Fix the SSL Certificate_verify_failed Error?<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Some people might suggest that you\nsimply disable the certificate verification function. But this tactic not only\nfails to resolve the issue, but also means that you\u2019re no longer verifying the\ncertificate, which can lead to a variety of other issues. <\/p>\n\n\n\n<p class=\"wp-block-paragraph\">To fix this this problem, you may\nneed to upgrade your SSL certificate directory. The most common way to do so is\nto use the following PIP code. <\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https:\/\/pip.pypa.io\/en\/stable\/installing\/\">PIP<\/a>,\nwhich stands for \u201cPython Package Installer,\u201d is exactly how it sounds \u2014 it\u2019s a\npackage installer for Python. This command allows for easy installation of\npackages \u2014 or, in this case, our updated SSL certificates. With PIP, all you\nwould have to do to update your SSL certificate directory is input the\nfollowing piece of code: <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>pip install --upgrade certifi<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">What\nthis command does is update your system\u2019s SSL certificate directory. This allows\nyou to download the files that were previously being denied as a result of the\nlack of an SSL certificate (which, in this case, was the page scraper). <\/p>\n\n\n\n<p class=\"wp-block-paragraph\">After\nexecuting the code, the error should be gone.&nbsp;\nThat wasn\u2019t so hard, was it?<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Troubleshooting Guides<\/h3>\n\n\n\n<ul>\n<li><a href=\"https:\/\/sectigostore.com\/blog\/ssl_error_rx_record_too_long-9-solutions-for-site-owners-and-visitors\/\">How to Resolve SSL_ERROR_RX_RECORD_TOO_LONG as a Site Visitor<\/a><\/li>\n<li><a href=\"https:\/\/sectigostore.com\/blog\/how-to-fix-err-ssl-protocol-error\/\">How to Fix the ERR_SSL_PROTOCOL_ERROR in 8 Easy Steps (2020 Edition)<\/a><\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>We know setting up SSL certificates with Python can be confusing \u2014 that\u2019s why we\u2019re here to help When you\u2019re dealing with Python or any programming language at all, there\u2019s plenty of room for mistakes to be made or technical errors to occur. Among these potential errors is the Python SSL \u201ccertificate_verify_failed\u201d error. Getting this error can be frustrating, especially if you\u2019ve done your best to ensure that everything is done right. When dealing with this error, it\u2019s important to know that it isn\u2019t hard to solve \u2014 but it <a href=\"https:\/\/sectigostore.com\/page\/what-is-an-ssl-certificate_verify_failed-error-and-how-do-i-resolve-it\/\" class=\"more-link\">Continue Reading<\/a><\/p>\n","protected":false},"author":3,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[9],"tags":[50],"class_list":["post-937","post","type-post","status-publish","format-standard","hentry","category-ssl-error","tag-python"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>What is an SSL \u2018Certificate_Verify_Failed\u2019 Error and How Do I Resolve It? - SectigoStore<\/title>\n<meta name=\"description\" content=\"How do you resolve an SSL certificate_verify_failed error in Python? Here&#039;s what you need to know and how you can fix the problem quickly.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/sectigostore.com\/page\/what-is-an-ssl-certificate_verify_failed-error-and-how-do-i-resolve-it\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"What is an SSL \u2018Certificate_Verify_Failed\u2019 Error and How Do I Resolve It? - SectigoStore\" \/>\n<meta property=\"og:description\" content=\"How do you resolve an SSL certificate_verify_failed error in Python? Here&#039;s what you need to know and how you can fix the problem quickly.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/sectigostore.com\/page\/what-is-an-ssl-certificate_verify_failed-error-and-how-do-i-resolve-it\/\" \/>\n<meta property=\"og:site_name\" content=\"SectigoStore\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/sectigostore\/\" \/>\n<meta property=\"article:published_time\" content=\"2019-10-25T21:19:32+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-07-01T10:05:56+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/sectigostore.com\/page\/wp-content\/uploads\/2019\/10\/python-graphic-1024x640.jpg\" \/>\n<meta name=\"author\" content=\"Casey Crane\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@sectigostore\" \/>\n<meta name=\"twitter:site\" content=\"@sectigostore\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Casey Crane\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/sectigostore.com\\\/page\\\/what-is-an-ssl-certificate_verify_failed-error-and-how-do-i-resolve-it\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/sectigostore.com\\\/page\\\/what-is-an-ssl-certificate_verify_failed-error-and-how-do-i-resolve-it\\\/\"},\"author\":{\"name\":\"Casey Crane\",\"@id\":\"https:\\\/\\\/sectigostore.com\\\/page\\\/#\\\/schema\\\/person\\\/688bf18a6c80e719ed969e29c948f75d\"},\"headline\":\"What is an SSL \u2018Certificate_Verify_Failed\u2019 Error and How Do I Resolve It?\",\"datePublished\":\"2019-10-25T21:19:32+00:00\",\"dateModified\":\"2024-07-01T10:05:56+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/sectigostore.com\\\/page\\\/what-is-an-ssl-certificate_verify_failed-error-and-how-do-i-resolve-it\\\/\"},\"wordCount\":585,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/sectigostore.com\\\/page\\\/what-is-an-ssl-certificate_verify_failed-error-and-how-do-i-resolve-it\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/sectigostore.com\\\/page\\\/wp-content\\\/uploads\\\/2019\\\/10\\\/python-graphic-1024x640.jpg\",\"keywords\":[\"Python\"],\"articleSection\":[\"SSL Errors\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/sectigostore.com\\\/page\\\/what-is-an-ssl-certificate_verify_failed-error-and-how-do-i-resolve-it\\\/\",\"url\":\"https:\\\/\\\/sectigostore.com\\\/page\\\/what-is-an-ssl-certificate_verify_failed-error-and-how-do-i-resolve-it\\\/\",\"name\":\"What is an SSL \u2018Certificate_Verify_Failed\u2019 Error and How Do I Resolve It? - SectigoStore\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/sectigostore.com\\\/page\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/sectigostore.com\\\/page\\\/what-is-an-ssl-certificate_verify_failed-error-and-how-do-i-resolve-it\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/sectigostore.com\\\/page\\\/what-is-an-ssl-certificate_verify_failed-error-and-how-do-i-resolve-it\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/sectigostore.com\\\/page\\\/wp-content\\\/uploads\\\/2019\\\/10\\\/python-graphic-1024x640.jpg\",\"datePublished\":\"2019-10-25T21:19:32+00:00\",\"dateModified\":\"2024-07-01T10:05:56+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/sectigostore.com\\\/page\\\/#\\\/schema\\\/person\\\/688bf18a6c80e719ed969e29c948f75d\"},\"description\":\"How do you resolve an SSL certificate_verify_failed error in Python? Here's what you need to know and how you can fix the problem quickly.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/sectigostore.com\\\/page\\\/what-is-an-ssl-certificate_verify_failed-error-and-how-do-i-resolve-it\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/sectigostore.com\\\/page\\\/what-is-an-ssl-certificate_verify_failed-error-and-how-do-i-resolve-it\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/sectigostore.com\\\/page\\\/what-is-an-ssl-certificate_verify_failed-error-and-how-do-i-resolve-it\\\/#primaryimage\",\"url\":\"https:\\\/\\\/sectigostore.com\\\/page\\\/wp-content\\\/uploads\\\/2019\\\/10\\\/python-graphic.jpg\",\"contentUrl\":\"https:\\\/\\\/sectigostore.com\\\/page\\\/wp-content\\\/uploads\\\/2019\\\/10\\\/python-graphic.jpg\",\"width\":1429,\"height\":893,\"caption\":\"graphic: ssl certificate_verify_failed error instructions for how to fix the issue\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/sectigostore.com\\\/page\\\/what-is-an-ssl-certificate_verify_failed-error-and-how-do-i-resolve-it\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"SSL Resources\",\"item\":\"https:\\\/\\\/sectigostore.com\\\/page\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"SSL Errors\",\"item\":\"https:\\\/\\\/sectigostore.com\\\/page\\\/ssl-error\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"What is an SSL \u2018Certificate_Verify_Failed\u2019 Error and How Do I Resolve It?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/sectigostore.com\\\/page\\\/#website\",\"url\":\"https:\\\/\\\/sectigostore.com\\\/page\\\/\",\"name\":\"SectigoStore\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/sectigostore.com\\\/page\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/sectigostore.com\\\/page\\\/#\\\/schema\\\/person\\\/688bf18a6c80e719ed969e29c948f75d\",\"name\":\"Casey Crane\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/c18d819d34a1995e91a4aa7518e9048df7856f336a1ede2262a572db7b1c2506?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/c18d819d34a1995e91a4aa7518e9048df7856f336a1ede2262a572db7b1c2506?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/c18d819d34a1995e91a4aa7518e9048df7856f336a1ede2262a572db7b1c2506?s=96&d=mm&r=g\",\"caption\":\"Casey Crane\"},\"url\":\"https:\\\/\\\/sectigostore.com\\\/page\\\/author\\\/casey-crane\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"What is an SSL \u2018Certificate_Verify_Failed\u2019 Error and How Do I Resolve It? - SectigoStore","description":"How do you resolve an SSL certificate_verify_failed error in Python? Here's what you need to know and how you can fix the problem quickly.","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:\/\/sectigostore.com\/page\/what-is-an-ssl-certificate_verify_failed-error-and-how-do-i-resolve-it\/","og_locale":"en_US","og_type":"article","og_title":"What is an SSL \u2018Certificate_Verify_Failed\u2019 Error and How Do I Resolve It? - SectigoStore","og_description":"How do you resolve an SSL certificate_verify_failed error in Python? Here's what you need to know and how you can fix the problem quickly.","og_url":"https:\/\/sectigostore.com\/page\/what-is-an-ssl-certificate_verify_failed-error-and-how-do-i-resolve-it\/","og_site_name":"SectigoStore","article_publisher":"https:\/\/www.facebook.com\/sectigostore\/","article_published_time":"2019-10-25T21:19:32+00:00","article_modified_time":"2024-07-01T10:05:56+00:00","og_image":[{"url":"https:\/\/sectigostore.com\/page\/wp-content\/uploads\/2019\/10\/python-graphic-1024x640.jpg","type":"","width":"","height":""}],"author":"Casey Crane","twitter_card":"summary_large_image","twitter_creator":"@sectigostore","twitter_site":"@sectigostore","twitter_misc":{"Written by":"Casey Crane","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/sectigostore.com\/page\/what-is-an-ssl-certificate_verify_failed-error-and-how-do-i-resolve-it\/#article","isPartOf":{"@id":"https:\/\/sectigostore.com\/page\/what-is-an-ssl-certificate_verify_failed-error-and-how-do-i-resolve-it\/"},"author":{"name":"Casey Crane","@id":"https:\/\/sectigostore.com\/page\/#\/schema\/person\/688bf18a6c80e719ed969e29c948f75d"},"headline":"What is an SSL \u2018Certificate_Verify_Failed\u2019 Error and How Do I Resolve It?","datePublished":"2019-10-25T21:19:32+00:00","dateModified":"2024-07-01T10:05:56+00:00","mainEntityOfPage":{"@id":"https:\/\/sectigostore.com\/page\/what-is-an-ssl-certificate_verify_failed-error-and-how-do-i-resolve-it\/"},"wordCount":585,"commentCount":0,"image":{"@id":"https:\/\/sectigostore.com\/page\/what-is-an-ssl-certificate_verify_failed-error-and-how-do-i-resolve-it\/#primaryimage"},"thumbnailUrl":"https:\/\/sectigostore.com\/page\/wp-content\/uploads\/2019\/10\/python-graphic-1024x640.jpg","keywords":["Python"],"articleSection":["SSL Errors"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/sectigostore.com\/page\/what-is-an-ssl-certificate_verify_failed-error-and-how-do-i-resolve-it\/","url":"https:\/\/sectigostore.com\/page\/what-is-an-ssl-certificate_verify_failed-error-and-how-do-i-resolve-it\/","name":"What is an SSL \u2018Certificate_Verify_Failed\u2019 Error and How Do I Resolve It? - SectigoStore","isPartOf":{"@id":"https:\/\/sectigostore.com\/page\/#website"},"primaryImageOfPage":{"@id":"https:\/\/sectigostore.com\/page\/what-is-an-ssl-certificate_verify_failed-error-and-how-do-i-resolve-it\/#primaryimage"},"image":{"@id":"https:\/\/sectigostore.com\/page\/what-is-an-ssl-certificate_verify_failed-error-and-how-do-i-resolve-it\/#primaryimage"},"thumbnailUrl":"https:\/\/sectigostore.com\/page\/wp-content\/uploads\/2019\/10\/python-graphic-1024x640.jpg","datePublished":"2019-10-25T21:19:32+00:00","dateModified":"2024-07-01T10:05:56+00:00","author":{"@id":"https:\/\/sectigostore.com\/page\/#\/schema\/person\/688bf18a6c80e719ed969e29c948f75d"},"description":"How do you resolve an SSL certificate_verify_failed error in Python? Here's what you need to know and how you can fix the problem quickly.","breadcrumb":{"@id":"https:\/\/sectigostore.com\/page\/what-is-an-ssl-certificate_verify_failed-error-and-how-do-i-resolve-it\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/sectigostore.com\/page\/what-is-an-ssl-certificate_verify_failed-error-and-how-do-i-resolve-it\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/sectigostore.com\/page\/what-is-an-ssl-certificate_verify_failed-error-and-how-do-i-resolve-it\/#primaryimage","url":"https:\/\/sectigostore.com\/page\/wp-content\/uploads\/2019\/10\/python-graphic.jpg","contentUrl":"https:\/\/sectigostore.com\/page\/wp-content\/uploads\/2019\/10\/python-graphic.jpg","width":1429,"height":893,"caption":"graphic: ssl certificate_verify_failed error instructions for how to fix the issue"},{"@type":"BreadcrumbList","@id":"https:\/\/sectigostore.com\/page\/what-is-an-ssl-certificate_verify_failed-error-and-how-do-i-resolve-it\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"SSL Resources","item":"https:\/\/sectigostore.com\/page\/"},{"@type":"ListItem","position":2,"name":"SSL Errors","item":"https:\/\/sectigostore.com\/page\/ssl-error\/"},{"@type":"ListItem","position":3,"name":"What is an SSL \u2018Certificate_Verify_Failed\u2019 Error and How Do I Resolve It?"}]},{"@type":"WebSite","@id":"https:\/\/sectigostore.com\/page\/#website","url":"https:\/\/sectigostore.com\/page\/","name":"SectigoStore","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/sectigostore.com\/page\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/sectigostore.com\/page\/#\/schema\/person\/688bf18a6c80e719ed969e29c948f75d","name":"Casey Crane","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/c18d819d34a1995e91a4aa7518e9048df7856f336a1ede2262a572db7b1c2506?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/c18d819d34a1995e91a4aa7518e9048df7856f336a1ede2262a572db7b1c2506?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/c18d819d34a1995e91a4aa7518e9048df7856f336a1ede2262a572db7b1c2506?s=96&d=mm&r=g","caption":"Casey Crane"},"url":"https:\/\/sectigostore.com\/page\/author\/casey-crane\/"}]}},"_links":{"self":[{"href":"https:\/\/sectigostore.com\/page\/wp-json\/wp\/v2\/posts\/937","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/sectigostore.com\/page\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/sectigostore.com\/page\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/sectigostore.com\/page\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/sectigostore.com\/page\/wp-json\/wp\/v2\/comments?post=937"}],"version-history":[{"count":0,"href":"https:\/\/sectigostore.com\/page\/wp-json\/wp\/v2\/posts\/937\/revisions"}],"wp:attachment":[{"href":"https:\/\/sectigostore.com\/page\/wp-json\/wp\/v2\/media?parent=937"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/sectigostore.com\/page\/wp-json\/wp\/v2\/categories?post=937"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/sectigostore.com\/page\/wp-json\/wp\/v2\/tags?post=937"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}