{"id":1663,"date":"2022-07-20T13:15:28","date_gmt":"2022-07-20T05:15:28","guid":{"rendered":"https:\/\/pjq.me\/?p=1663"},"modified":"2022-07-20T13:15:28","modified_gmt":"2022-07-20T05:15:28","slug":"gpg","status":"publish","type":"post","link":"https:\/\/pjq.me\/?p=1663","title":{"rendered":"GPG"},"content":{"rendered":"\n<div id=\"ez-toc-container\" class=\"ez-toc-v2_0_81 counter-hierarchy ez-toc-counter ez-toc-grey ez-toc-container-direction\">\n<div class=\"ez-toc-title-container\">\n<p class=\"ez-toc-title\" style=\"cursor:inherit\">Table of Contents<\/p>\n<span class=\"ez-toc-title-toggle\"><a href=\"#\" class=\"ez-toc-pull-right ez-toc-btn ez-toc-btn-xs ez-toc-btn-default ez-toc-toggle\" aria-label=\"Toggle Table of Content\"><span class=\"ez-toc-js-icon-con\"><span class=\"\"><span class=\"eztoc-hide\" style=\"display:none;\">Toggle<\/span><span class=\"ez-toc-icon-toggle-span\"><svg style=\"fill: #999;color:#999\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"list-377408\" width=\"20px\" height=\"20px\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M6 6H4v2h2V6zm14 0H8v2h12V6zM4 11h2v2H4v-2zm16 0H8v2h12v-2zM4 16h2v2H4v-2zm16 0H8v2h12v-2z\" fill=\"currentColor\"><\/path><\/svg><svg style=\"fill: #999;color:#999\" class=\"arrow-unsorted-368013\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"10px\" height=\"10px\" viewBox=\"0 0 24 24\" version=\"1.2\" baseProfile=\"tiny\"><path d=\"M18.2 9.3l-6.2-6.3-6.2 6.3c-.2.2-.3.4-.3.7s.1.5.3.7c.2.2.4.3.7.3h11c.3 0 .5-.1.7-.3.2-.2.3-.5.3-.7s-.1-.5-.3-.7zM5.8 14.7l6.2 6.3 6.2-6.3c.2-.2.3-.5.3-.7s-.1-.5-.3-.7c-.2-.2-.4-.3-.7-.3h-11c-.3 0-.5.1-.7.3-.2.2-.3.5-.3.7s.1.5.3.7z\"\/><\/svg><\/span><\/span><\/span><\/a><\/span><\/div>\n<nav><ul class='ez-toc-list ez-toc-list-level-1 ' ><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-1\" href=\"https:\/\/pjq.me\/?p=1663\/#Install_GPG\" >Install GPG<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-2\" href=\"https:\/\/pjq.me\/?p=1663\/#Generate_key\" >Generate key<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-3\" href=\"https:\/\/pjq.me\/?p=1663\/#EncryptDecrypt_files\" >Encrypt\/Decrypt files<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-4\" href=\"https:\/\/pjq.me\/?p=1663\/#Export_the_public_key\" >Export the public key<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-5\" href=\"https:\/\/pjq.me\/?p=1663\/#Enable_GPG_Sign_for_Github\" >Enable GPG Sign for Github<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-6\" href=\"https:\/\/pjq.me\/?p=1663\/#Reference\" >Reference<\/a><\/li><\/ul><\/nav><\/div>\n<h2 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"Install_GPG\"><\/span>Install GPG<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code> brew install --cask gpg-suite<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"Generate_key\"><\/span>Generate key<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code>gpg --full-gen-key\ngpg (GnuPG\/MacGPG2) 2.2.34; Copyright (C) 2022 g10 Code GmbH\nThis is free software: you are free to change and redistribute it.\nThere is NO WARRANTY, to the extent permitted by law.\n\nPlease select what kind of key you want:\n   (1) RSA and RSA (default)\n   (2) DSA and Elgamal\n   (3) DSA (sign only)\n   (4) RSA (sign only)\n  (14) Existing key from card\nYour selection?\nRSA keys may be between 1024 and 4096 bits long.\nWhat keysize do you want? (3072)\nRequested keysize is 3072 bits\nPlease specify how long the key should be valid.\n         0 = key does not expire\n      &lt;n&gt;  = key expires in n days\n      &lt;n&gt;w = key expires in n weeks\n      &lt;n&gt;m = key expires in n months\n      &lt;n&gt;y = key expires in n years\nKey is valid for? (0)\nKey does not expire at all\nIs this correct? (y\/N) y\n\nGnuPG needs to construct a user ID to identify your key.\n\nReal name: Jianqing Peng\nEmail address: pengjianqing@gmail.com\nComment:\nYou selected this USER-ID:\n    \"Jianqing Peng &lt;pengjianqing@gmail.com&gt;\"\n\nChange (N)ame, (C)omment, (E)mail or (O)kay\/(Q)uit?<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"EncryptDecrypt_files\"><\/span>Encrypt\/Decrypt files<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code>\/\/for binary file, output &gt; gpgtest.txt.gpg\ngpg -r pengjianqing@gmail.com -e gpgtest.txt\n\/\/for text, output &gt;  gpgtest.txt.asc\ngpg -r pengjianqing@gmail.com -ae gpgtest.txt\ngpg -d gpgtest.txt.gpg<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"Export_the_public_key\"><\/span>Export the public key<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code>gpg -a --output public_key.txt --export pengjianqing@gmail.com\ncat public_key.txt<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>-----BEGIN PGP PUBLIC KEY BLOCK-----\n\nmQGNBGLWdGwBDADEYBga76kEjgCthkPar\/qZalbTmD55sGPBYoMd6t6GKItTb0Ut\nMwjRfwrbgHsPpYZ3WYtQ4voHgQ+Kj5FWYUQ4EnN17gB9pR9N+YbjVV+9QYzkxtd3\nmEMzdEdkadcScqi9zzJH8pdtQ4JIAJTSiDhqhRA4F0G56v2RalO3IXDRwUr07xAo\noXDgLK24UTf8EuN+bW63Bw+maqfxdsxnxwDjEqVpU0VfrzSDKuVlFto7W2gEtFMH\nshwAsEnWqFaHYFJYpyV7QfbKIXneT7OD0qtVEj6+unX+tkaSpyeV75WU7C+ObvW\/\nXlNv3FUJp5L4FwGG++zbY4xUTiOsP9Orj1f4dazbK\/Tagxjrw08BkCyXOVhEzerO\nc17C3RF7r+RhAooRbND\/ij9qM7JWusby6SRJFX3re1fGCFVxWatJZkE14ZtnqEjH\nbwqOPOj4k63RN0wXtueExiouUbymN4++W+NkblW0uXhDvc\/X2H0uPs2aLqhsca+2\nfrabS3Qczc+BhqUAEQEAAbQmSmlhbnFpbmcgUGVuZyA8cGVuZ2ppYW5xaW5nQGdt\nYWlsLmNvbT6JAc4EEwEIADgWIQT66f4zBw24HkosF2j3B9T0Sl+EZQUCYtZ0bAIb\nAwULCQgHAgYVCgkICwIEFgIDAQIeAQIXgAAKCRD3B9T0Sl+EZRqmC\/0UPWG5HuHI\nLbu2p2SZPQ2K8glj+e6o+3Lvn\/RVHYP8b3fElHDWMxKVaA8DyiW+66gPHeFfj6Xk\n4t3sIxGy8pqc8eIR\/sfxpaCiIW3gjIYsnn6xpLx876QjZy0M266UWEBwtf78Kq16\nIaQ7jSsvenzteVkih468fQZbQ6AMQd3LCZ3l6MErjYOEGqwMsadC4vRtsdTKskTG\nMsZXRpEwmmfg4mvGrixdFt4pIDjf0ozhHm0R5hk6oBJ\/ImPQ0Q3VZOyVstGjhMBb\nt8UsLVhhjmFQTjvHORcMjgaJZHAi5IVtE3wSJGkGWY2nt27+zcBvLckZ5IuvPQKa\nM1ZLiWvNVYn\/WmYsQ8nIHFARjof5eFJQMhBdkoxJ03il9fSvqt1\/U4zIW5aGcpTs\nyBoq+CFQtlB81THcm\/19dSp1bo6BoLDgpl3To1bI9OcemWa0pzVIKEaT4N6GMowB\nPrVj+KbtppbXf0OYh9cQlNjygxhnZpaabG+GQ7y53XKtMju38pmFxg+5AY0EYtZ0\nbAEMANKZx4qRMDvpJZq72S+oQWuwh62NW6ZYcfdAbaAIveJHnsBFR1dFMXMgyy\/e\nFwR8bfZBDio4TGF2E5q\/\/s071uMkPsTaTRQ4KOwFzHt4SfZCkzTU8sBfh\/HHVB4s\n+s17S9oNsW\/pWNbxvtZ05KIFObdms+CxYsmtIveukdzKfFNrNGSCg4uYGmCg++hC\niImTLUbWIhCSg3wJgJGGPsljCcAvwJ4mJ73j\/5fWFrYptLzei9egZ4mqELNeVx2O\nEupns2KdUxyFl30Un+qC2dxtjXf919UJAmVF0Wgk9Hwv6JOPVDSZO7b5FCl9NtBX\nCWexwD6DG6TTkRvK2npn9BSmL8F+U+AqFHn9ZDMk025M2g+QRyda+aPjWJKM6ax7\nLn7HqqW7+LaRQSPBDCNVEFEIQFMbc7n\/6C\/IIvSe+SITMttPPTaOlp64Ob4cw6+o\n0QMCP42tbJs46hVOx1m0yd+ArrA+BPykc+a1oVd+L+1TexLYfiLAvpF8qF0Zcd42\nyRNdtwARAQABiQG2BBgBCAAgFiEE+un+MwcNuB5KLBdo9wfU9EpfhGUFAmLWdGwC\nGwwACgkQ9wfU9EpfhGUHmQwAtuTVEvWCdpSk82x9kVZHvduPQsF0EBaELiT7gsGj\nFaXdcX99ACEs4fiKC7dIh2cbudT1m1qnbdhUIWMTGURP2JAIWaek3qQOfdvpiwKY\nAEdqU7\/N+d80MdKha9flV6OyuHeiBxJBJxqoNRiM2OdNCko2D9KEwM7X3SDUlrWd\nxybbRKxDonT6YriO3rGlQGoy73i5O42k88qEqefleEKwge9WuPu5widCXdtUcBT+\nR9mLZzQANXSz7538NzUJGhPChQAkBEF1eBjNmN4WnvRd8qcDVOGuKbfyyzu8LGbE\n99i4\/ymGX6HVrgToB7w1IASrEDunbsyLm1GrvgQ5u2EXAdd1bN0XkMBINdrjk3vo\ns5NVjNaY5KA0lyTg31iclSLzWp+B\/ClxL33zHNT88CIR7b9EwUMGskmBTkIs2Lt4\nUmQEIfxRL7WKG7wYFcyseh131ix7wSDFmYPh+tu6flePQHSKk\/XeUEtmTiJs05As\nvx6Yx6ljtUjFH3k5j\/ZsTDBI\n=vYQw\n-----END PGP PUBLIC KEY BLOCK-----<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"Enable_GPG_Sign_for_Github\"><\/span>Enable GPG Sign for Github<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code>git config --global user.signingkey F707D4F44A5F8465\ngit config --global commit.gpgsign true<\/code><\/pre>\n\n\n\n<p>* Copy&amp;Paste the Public KEY to Github<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"Reference\"><\/span>Reference<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<ol class=\"wp-block-list\"><li>https:\/\/blog.creedowl.com\/posts\/gpg\/<\/li><\/ol>\n","protected":false},"excerpt":{"rendered":"<p>Install GPG Generate key Encrypt\/Decrypt files Export the public key Enable GPG Sign for Github * Copy&amp;Paste the Public KEY to Github Reference https:\/\/blog.creedowl.com\/posts\/gpg\/<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-1663","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.0 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>GPG - Jianqing&#039;s Blog<\/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:\/\/pjq.me\/?p=1663\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"GPG - Jianqing&#039;s Blog\" \/>\n<meta property=\"og:description\" content=\"Install GPG Generate key Encrypt\/Decrypt files Export the public key Enable GPG Sign for Github * Copy&amp;Paste the Public KEY to Github Reference https:\/\/blog.creedowl.com\/posts\/gpg\/\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pjq.me\/?p=1663\" \/>\n<meta property=\"og:site_name\" content=\"Jianqing&#039;s Blog\" \/>\n<meta property=\"article:published_time\" content=\"2022-07-20T05:15:28+00:00\" \/>\n<meta name=\"author\" content=\"pengjianqing\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"pengjianqing\" \/>\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:\/\/pjq.me\/?p=1663#article\",\"isPartOf\":{\"@id\":\"https:\/\/pjq.me\/?p=1663\"},\"author\":{\"name\":\"pengjianqing\",\"@id\":\"https:\/\/pjq.me\/#\/schema\/person\/0eb1e72d1e69fbbd9b5c0bfd8e2aae60\"},\"headline\":\"GPG\",\"datePublished\":\"2022-07-20T05:15:28+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/pjq.me\/?p=1663\"},\"wordCount\":32,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/pjq.me\/#\/schema\/person\/0eb1e72d1e69fbbd9b5c0bfd8e2aae60\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/pjq.me\/?p=1663#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/pjq.me\/?p=1663\",\"url\":\"https:\/\/pjq.me\/?p=1663\",\"name\":\"GPG - Jianqing&#039;s Blog\",\"isPartOf\":{\"@id\":\"https:\/\/pjq.me\/#website\"},\"datePublished\":\"2022-07-20T05:15:28+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/pjq.me\/?p=1663#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/pjq.me\/?p=1663\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/pjq.me\/?p=1663#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/pjq.me\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"GPG\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/pjq.me\/#website\",\"url\":\"https:\/\/pjq.me\/\",\"name\":\"Jianqing&#039;s Blog\",\"description\":\"Thoughts and Future\",\"publisher\":{\"@id\":\"https:\/\/pjq.me\/#\/schema\/person\/0eb1e72d1e69fbbd9b5c0bfd8e2aae60\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/pjq.me\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/pjq.me\/#\/schema\/person\/0eb1e72d1e69fbbd9b5c0bfd8e2aae60\",\"name\":\"pengjianqing\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/pjq.me\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/pjq.me\/wp-content\/uploads\/2021\/12\/Screen-Shot-2021-12-02-at-6.10.58-PM.png\",\"contentUrl\":\"https:\/\/pjq.me\/wp-content\/uploads\/2021\/12\/Screen-Shot-2021-12-02-at-6.10.58-PM.png\",\"width\":460,\"height\":752,\"caption\":\"pengjianqing\"},\"logo\":{\"@id\":\"https:\/\/pjq.me\/#\/schema\/person\/image\/\"},\"url\":\"https:\/\/pjq.me\/?author=1\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"GPG - Jianqing&#039;s Blog","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:\/\/pjq.me\/?p=1663","og_locale":"en_US","og_type":"article","og_title":"GPG - Jianqing&#039;s Blog","og_description":"Install GPG Generate key Encrypt\/Decrypt files Export the public key Enable GPG Sign for Github * Copy&amp;Paste the Public KEY to Github Reference https:\/\/blog.creedowl.com\/posts\/gpg\/","og_url":"https:\/\/pjq.me\/?p=1663","og_site_name":"Jianqing&#039;s Blog","article_published_time":"2022-07-20T05:15:28+00:00","author":"pengjianqing","twitter_card":"summary_large_image","twitter_misc":{"Written by":"pengjianqing","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pjq.me\/?p=1663#article","isPartOf":{"@id":"https:\/\/pjq.me\/?p=1663"},"author":{"name":"pengjianqing","@id":"https:\/\/pjq.me\/#\/schema\/person\/0eb1e72d1e69fbbd9b5c0bfd8e2aae60"},"headline":"GPG","datePublished":"2022-07-20T05:15:28+00:00","mainEntityOfPage":{"@id":"https:\/\/pjq.me\/?p=1663"},"wordCount":32,"commentCount":0,"publisher":{"@id":"https:\/\/pjq.me\/#\/schema\/person\/0eb1e72d1e69fbbd9b5c0bfd8e2aae60"},"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/pjq.me\/?p=1663#respond"]}]},{"@type":"WebPage","@id":"https:\/\/pjq.me\/?p=1663","url":"https:\/\/pjq.me\/?p=1663","name":"GPG - Jianqing&#039;s Blog","isPartOf":{"@id":"https:\/\/pjq.me\/#website"},"datePublished":"2022-07-20T05:15:28+00:00","breadcrumb":{"@id":"https:\/\/pjq.me\/?p=1663#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pjq.me\/?p=1663"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/pjq.me\/?p=1663#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pjq.me\/"},{"@type":"ListItem","position":2,"name":"GPG"}]},{"@type":"WebSite","@id":"https:\/\/pjq.me\/#website","url":"https:\/\/pjq.me\/","name":"Jianqing&#039;s Blog","description":"Thoughts and Future","publisher":{"@id":"https:\/\/pjq.me\/#\/schema\/person\/0eb1e72d1e69fbbd9b5c0bfd8e2aae60"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/pjq.me\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/pjq.me\/#\/schema\/person\/0eb1e72d1e69fbbd9b5c0bfd8e2aae60","name":"pengjianqing","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pjq.me\/#\/schema\/person\/image\/","url":"https:\/\/pjq.me\/wp-content\/uploads\/2021\/12\/Screen-Shot-2021-12-02-at-6.10.58-PM.png","contentUrl":"https:\/\/pjq.me\/wp-content\/uploads\/2021\/12\/Screen-Shot-2021-12-02-at-6.10.58-PM.png","width":460,"height":752,"caption":"pengjianqing"},"logo":{"@id":"https:\/\/pjq.me\/#\/schema\/person\/image\/"},"url":"https:\/\/pjq.me\/?author=1"}]}},"views":805,"_links":{"self":[{"href":"https:\/\/pjq.me\/index.php?rest_route=\/wp\/v2\/posts\/1663","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pjq.me\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pjq.me\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pjq.me\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/pjq.me\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=1663"}],"version-history":[{"count":1,"href":"https:\/\/pjq.me\/index.php?rest_route=\/wp\/v2\/posts\/1663\/revisions"}],"predecessor-version":[{"id":1664,"href":"https:\/\/pjq.me\/index.php?rest_route=\/wp\/v2\/posts\/1663\/revisions\/1664"}],"wp:attachment":[{"href":"https:\/\/pjq.me\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=1663"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pjq.me\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=1663"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pjq.me\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=1663"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}