{"id":414,"date":"2019-07-16T19:06:24","date_gmt":"2019-07-16T11:06:24","guid":{"rendered":"https:\/\/www.myway5.com\/?p=414"},"modified":"2023-07-05T21:41:25","modified_gmt":"2023-07-05T13:41:25","slug":"cfssl","status":"publish","type":"post","link":"https:\/\/www.myway5.com\/index.php\/2019\/07\/16\/cfssl\/","title":{"rendered":"cfssl\u751f\u6210\u8bc1\u4e66\u5e76\u90e8\u7f72"},"content":{"rendered":"<h2>\u5b89\u88c5<\/h2>\n<p>cfssl\u662f\u57fa\u4e8ego\u7684\uff0c\u56e0\u6b64\u9700\u8981\u5b89\u88c5go<\/p>\n<pre><code class=\"line-numbers\">go get -u github.com\/cloudflare\/cfssl\/cmd\/cfssl\ngo get -u github.com\/cloudflare\/cfssl\/cmd\/cfssljson\n<\/code><\/pre>\n<p>\u5b89\u88c5\u5b8c\u6210\u540e\u5982\u679c\u4e0d\u80fd\u76f4\u63a5\u4f7f\u7528<code>cfssl<\/code>\u8bf7\u68c0\u67e5<code>$GOPATH\/bin<\/code>\u662f\u5426\u52a0\u5165\u5230<code>PATH<\/code>\u73af\u5883\u53d8\u91cf\u4e2d\u3002<\/p>\n<p>\u6267\u884c<code>cfssl<\/code>\u67e5\u770b\u4e00\u4e0bcfssl\u63d0\u4f9b\u7684\u547d\u4ee4<\/p>\n<pre><code class=\"line-numbers\">Usage:\nAvailable commands:\n        sign\n        serve\n        gencsr\n        ocspsign\n        ocspserve\n        revoke\n        certinfo\n        version\n        crl\n        gencert\n        ocsprefresh\n        scan\n        info\n        print-defaults\n        bundle\n        genkey\n        gencrl\n        ocspdump\n        selfsign\nTop-level flags:\n<\/code><\/pre>\n<h2>\u521b\u5efaCA<\/h2>\n<p>CA\u7684\u5168\u79f0\u662fCertificate Authority\uff0c\u4e5f\u53eb\u8bc1\u4e66\u6388\u6743\u4e2d\u5fc3\u3002CA\u7684\u4f5c\u7528\u662f\u4f5c\u4e3a\u4e00\u4e2a\u6743\u5a01\u7684\u3001\u88ab\u4fe1\u4efb\u7684\u7b2c\u4e09\u65b9\u673a\u6784\uff0c\u63d0\u4f9b\u7ba1\u7406\u548c\u7b7e\u53d1\u8bc1\u4e66\u3002\u5728\u4f7f\u7528https\u8bbf\u95ee\u4e00\u4e2a\u7f51\u7ad9\u65f6\uff0c\u4e3a\u4e86\u8bc1\u660e\u8fd9\u4e2a\u7f51\u7ad9\u662f\u53ef\u4fe1\u4efb\u7684\uff0c\u90a3\u4e48\u5c31\u9700\u8981\u4f7f\u7528CA\u9881\u53d1\u7684\u8bc1\u4e66\u6765\u8bc1\u660e\u81ea\u5df1\u3002<\/p>\n<p>\u56e0\u4e3a\u5728\u5185\u7f51\u73af\u5883\u4e2d\u642d\u5efadocker-registry\uff0c\u5fc5\u7136\u4e0d\u53ef\u80fd\u7528\u5230\u4e92\u8054\u7f51\u4e0a\u7684CA\u673a\u6784\uff0c\u56e0\u6b64\u6211\u4eec\u9700\u8981\u81ea\u5df1\u626e\u6f14\u8fd9\u4e2a\u89d2\u8272\u3002\u9996\u5148\u521b\u5efa\u6587\u4ef6\u5939<\/p>\n<pre><code class=\"line-numbers\">mkdir ca\ncfssl print-defaults config &gt; ca\/ca-config.json\ncfssl print-defaults csr &gt; ca\/ca-csr.json\n<\/code><\/pre>\n<p>\u7136\u540e\u4fee\u6539ca-config.json<\/p>\n<pre><code class=\"line-numbers\">{\n    \"signing\": {\n        \"default\": {\n            \"expiry\": \"2540400h\"\n        },\n        \"profiles\": {\n            \"www\": {\n                \"expiry\": \"2540400h\",\n                \"usages\": [\n                    \"signing\",\n                    \"key encipherment\",\n                    \"server auth\"\n                ]\n            },\n            \"client\": {\n                \"expiry\": \"2540400h\",\n                \"usages\": [\n                    \"signing\",\n                    \"key encipherment\",\n                    \"client auth\"\n                ]\n            }\n        }\n    }\n}\n<\/code><\/pre>\n<p>\u751f\u6210ca<\/p>\n<pre><code class=\"line-numbers\">cfssl gencert -initca ca\/ca-csr.json | cfssljson -bare ca\/ca -\n<\/code><\/pre>\n<h2>\u751f\u6210\u670d\u52a1\u5668\u8bc1\u4e66<\/h2>\n<pre><code class=\"line-numbers\">mkdir server\ncfssl print-defaults csr &gt; server\/server.json\n<\/code><\/pre>\n<p>\u4fee\u6539server.json<\/p>\n<pre><code class=\"line-numbers\">{\n    \"CN\": \"docker-registry\",\n    \"hosts\": [\n        \"docker-registry.k8s\",\n        \"www.docker-registry.k8s\"\n    ],\n    \"key\": {\n        \"algo\": \"ecdsa\",\n        \"size\": 256\n    },\n    \"names\": [\n        {\n            \"C\": \"CN\",\n            \"ST\": \"SH\",\n            \"L\": \"Shanghai\"\n        }\n    ]\n}\n<\/code><\/pre>\n<p>\u7b7e\u53d1\u8bc1\u4e66<\/p>\n<pre><code class=\"line-numbers\">cfssl gencert -ca=ca\/ca.pem -ca-key=ca\/ca-key.pem -config=ca\/ca-config.json -profile=www server\/server.json | cfssljson -bare server\/server\n<\/code><\/pre>\n<h2>\u4f7f\u7528<\/h2>\n<p>\u4e0a\u9762\u4e24\u6b65\u5f97\u5230\u4e86ca.pem, server-key.pem, server.pem\u3002ca.pem\u662fca\u7684\u8bc1\u4e66\uff0cserver-key.pem\u662f\u670d\u52a1\u5668\u8bc1\u4e66\u7684\u79c1\u94a5\uff0cserver.pem\u662f\u670d\u52a1\u5668\u8bc1\u4e66<\/p>\n<p>\u4e3a\u4e86\u5728k8s\u4e2d\u4f7f\u7528\uff0c\u6211\u4eec\u9700\u8981\u5148\u521b\u5efa\u9ed8\u8ba4\u7684tls secret<\/p>\n<pre><code class=\"line-numbers\">kubectl -n docker-registry create secret tls docker-registry-tls-cert --key=server\/server-key.pem --cert=server\/server.pem\n<\/code><\/pre>\n<h2>\u4e3a\u7535\u8111\u5bfc\u5165ca\u8bc1\u4e66<\/h2>\n<pre><code class=\"line-numbers\">sudo mkdir \/usr\/share\/ca-certificates\/extra\nsudo cp ca.pem \/usr\/share\/ca-certificates\/extra\/ca.crt\n<\/code><\/pre>\n<p>\u8fd0\u884c\u547d\u4ee4\u66f4\u65b0\u8bc1\u4e66<\/p>\n<pre><code class=\"line-numbers\">sudo dpkg-reconfigure ca-certificates\n<\/code><\/pre>\n<p>\u7136\u540e\u4f7f\u7528<code>curl<\/code>\u67e5\u770bca\u6839\u8bc1\u4e66\u662f\u5426\u5b89\u88c5\u6210\u529f<\/p>\n<pre><code class=\"line-numbers\">curl -v https:\/\/docker-registry.k8s\n<\/code><\/pre>\n<p>\u663e\u793a\u4e00\u4e0b\u5185\u5bb9\u8868\u793a\u6210\u529f<\/p>\n<pre><code class=\"line-numbers\">* TLSv1.3 (OUT), TLS handshake, Client hello (1):\n* TLSv1.3 (IN), TLS handshake, Server hello (2):\n* TLSv1.2 (IN), TLS handshake, Certificate (11):\n* TLSv1.2 (IN), TLS handshake, Server key exchange (12):\n* TLSv1.2 (IN), TLS handshake, Server finished (14):\n* TLSv1.2 (OUT), TLS handshake, Client key exchange (16):\n* TLSv1.2 (OUT), TLS change cipher, Change cipher spec (1):\n* TLSv1.2 (OUT), TLS handshake, Finished (20):\n* TLSv1.2 (IN), TLS handshake, Finished (20):\n* SSL connection using TLSv1.2 \/ ECDHE-ECDSA-AES256-GCM-SHA384\n* ALPN, server accepted to use http\/1.1\n* Server certificate:\n*  subject: C=CN; ST=SH; L=SH; CN=DR\n*  start date: Jun 26 06:37:00 2019 GMT\n*  expire date: Apr 17 06:37:00 2309 GMT\n*  subjectAltName: host \"docker-registry.k8s\" matched cert's \"docker-registry.k8s\"\n*  issuer: C=US; ST=CA; L=San Francisco; CN=example.net\n*  SSL certificate verify ok.\n&gt; GET \/ HTTP\/1.1\n&gt; Host: docker-registry.k8s\n&gt; User-Agent: curl\/7.64.0\n&gt; Accept: *\/*\n&gt; \n&lt; HTTP\/1.1 200 OK\n&lt; Server: nginx\/1.15.9\n&lt; Date: Wed, 26 Jun 2019 11:40:04 GMT\n&lt; Content-Length: 0\n&lt; Connection: keep-alive\n&lt; Cache-Control: no-cache\n&lt; \n* Connection #0 to host docker-registry.k8s left intact\n<\/code><\/pre>\n<p>\u8fd9\u91cc\u6709\u4e00\u70b9\u9700\u8981\u6ce8\u610f\u7684\uff0c\u6211\u7684\u7535\u8111\u4e0a\u5b89\u88c5\u4e86anaconda\u7684\u73af\u5883\uff0c\u56e0\u6b64curl\u662f\u5728anaconda\u4e0b\u7684curl\uff0c\u5b83\u4f1a\u9ed8\u8ba4\u52a0\u8f7d<code>\/home\/username\/anaconda3\/certs\/cacert.pem<\/code>\u8fd9\u4e2a\u3002\u56e0\u6b64\u6211\u9700\u8981\u5c06<code>\/etc\/ssl\/certs\/ca-certificates.crt<\/code>\u8986\u76d6\u6389\u8fd9\u4e2a\u6587\u4ef6\u624d\u80fd\u9ed8\u8ba4\u52a0\u8f7d\u3002\u6216\u8005\u4e5f\u53ef\u4ee5\u4f7f\u7528<code>--cacert<\/code>\u6307\u5b9a\u6839\u76ee\u5f55\u6587\u4ef6\u7684\u4f4d\u7f6e\u3002<\/p>\n<p>\u6216\u8005\u53ef\u4ee5\u53c2\u8003\u8fd9\u7bc7\u8be6\u7ec6\u7684\u8bf4\u660e\uff1a https:\/\/jite.eu\/2019\/2\/6\/ca-with-cfssl\/#<\/p>\n<h2>chrome\u4e0b\u7684\u76f8\u5173\u8bbe\u7f6e<\/h2>\n<p>\u5373\u4f7f\u5728\u6211\u5c06\u6839\u8bc1\u4e66\u8bbe\u7f6e\u597d\u5e76\u4e14\u9a8c\u8bc1\u6210\u529f\uff0c\u4f46\u662fchrome\u4ecd\u7136\u4f1a\u6709\u4e0d\u5b89\u5168\u7684\u6807\u8bc6\uff0c\u8fd9\u662f\u56e0\u4e3a\u9700\u8981\u4e3achrome\u5355\u72ec\u5bfc\u5165\u6839\u8bc1\u4e66\uff0c\u8bbe\u7f6e\u7684\u8def\u5f84\u4e3a: \u8bbe\u7f6e -> \u9ad8\u7ea7 -> HTTPS\u76f8\u5173\u8bbe\u7f6e\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u5b89\u88c5 cfssl\u662f\u57fa\u4e8ego\u7684\uff0c\u56e0\u6b64\u9700\u8981\u5b89\u88c5go go get -u github.com\/cloudflare &hellip; <a href=\"https:\/\/www.myway5.com\/index.php\/2019\/07\/16\/cfssl\/\" class=\"more-link\">\u7ee7\u7eed\u9605\u8bfb<span class=\"screen-reader-text\">cfssl\u751f\u6210\u8bc1\u4e66\u5e76\u90e8\u7f72<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[89],"tags":[],"class_list":["post-414","post","type-post","status-publish","format-standard","hentry","category-k8s"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.4 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>cfssl\u751f\u6210\u8bc1\u4e66\u5e76\u90e8\u7f72 - \u4e00\u53ea\u5b89\u9759\u7684\u732b<\/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.myway5.com\/index.php\/2019\/07\/16\/cfssl\/\" \/>\n<meta property=\"og:locale\" content=\"zh_CN\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"cfssl\u751f\u6210\u8bc1\u4e66\u5e76\u90e8\u7f72 - \u4e00\u53ea\u5b89\u9759\u7684\u732b\" \/>\n<meta property=\"og:description\" content=\"\u5b89\u88c5 cfssl\u662f\u57fa\u4e8ego\u7684\uff0c\u56e0\u6b64\u9700\u8981\u5b89\u88c5go go get -u github.com\/cloudflare &hellip; \u7ee7\u7eed\u9605\u8bfbcfssl\u751f\u6210\u8bc1\u4e66\u5e76\u90e8\u7f72\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.myway5.com\/index.php\/2019\/07\/16\/cfssl\/\" \/>\n<meta property=\"og:site_name\" content=\"\u4e00\u53ea\u5b89\u9759\u7684\u732b\" \/>\n<meta property=\"article:published_time\" content=\"2019-07-16T11:06:24+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-07-05T13:41:25+00:00\" \/>\n<meta name=\"author\" content=\"jiangpengfei\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u4f5c\u8005\" \/>\n\t<meta name=\"twitter:data1\" content=\"jiangpengfei\" \/>\n\t<meta name=\"twitter:label2\" content=\"\u9884\u8ba1\u9605\u8bfb\u65f6\u95f4\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 \u5206\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.myway5.com\/index.php\/2019\/07\/16\/cfssl\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.myway5.com\/index.php\/2019\/07\/16\/cfssl\/\"},\"author\":{\"name\":\"jiangpengfei\",\"@id\":\"https:\/\/www.myway5.com\/#\/schema\/person\/b19267e8b106343431e163ec96950685\"},\"headline\":\"cfssl\u751f\u6210\u8bc1\u4e66\u5e76\u90e8\u7f72\",\"datePublished\":\"2019-07-16T11:06:24+00:00\",\"dateModified\":\"2023-07-05T13:41:25+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.myway5.com\/index.php\/2019\/07\/16\/cfssl\/\"},\"wordCount\":52,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.myway5.com\/#\/schema\/person\/b19267e8b106343431e163ec96950685\"},\"articleSection\":[\"k8s\"],\"inLanguage\":\"zh-Hans\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.myway5.com\/index.php\/2019\/07\/16\/cfssl\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.myway5.com\/index.php\/2019\/07\/16\/cfssl\/\",\"url\":\"https:\/\/www.myway5.com\/index.php\/2019\/07\/16\/cfssl\/\",\"name\":\"cfssl\u751f\u6210\u8bc1\u4e66\u5e76\u90e8\u7f72 - \u4e00\u53ea\u5b89\u9759\u7684\u732b\",\"isPartOf\":{\"@id\":\"https:\/\/www.myway5.com\/#website\"},\"datePublished\":\"2019-07-16T11:06:24+00:00\",\"dateModified\":\"2023-07-05T13:41:25+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.myway5.com\/index.php\/2019\/07\/16\/cfssl\/#breadcrumb\"},\"inLanguage\":\"zh-Hans\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.myway5.com\/index.php\/2019\/07\/16\/cfssl\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.myway5.com\/index.php\/2019\/07\/16\/cfssl\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u9996\u9875\",\"item\":\"https:\/\/www.myway5.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"cfssl\u751f\u6210\u8bc1\u4e66\u5e76\u90e8\u7f72\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.myway5.com\/#website\",\"url\":\"https:\/\/www.myway5.com\/\",\"name\":\"\u4e00\u53ea\u5b89\u9759\u7684\u732b\",\"description\":\"\u60f3\u5565\u5462\",\"publisher\":{\"@id\":\"https:\/\/www.myway5.com\/#\/schema\/person\/b19267e8b106343431e163ec96950685\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.myway5.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"zh-Hans\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/www.myway5.com\/#\/schema\/person\/b19267e8b106343431e163ec96950685\",\"name\":\"jiangpengfei\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"zh-Hans\",\"@id\":\"https:\/\/www.myway5.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/f8c7de757f6e0247412bcfd31b7c2271?s=96&d=monsterid&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/f8c7de757f6e0247412bcfd31b7c2271?s=96&d=monsterid&r=g\",\"caption\":\"jiangpengfei\"},\"logo\":{\"@id\":\"https:\/\/www.myway5.com\/#\/schema\/person\/image\/\"},\"url\":\"https:\/\/www.myway5.com\/index.php\/author\/joyme\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"cfssl\u751f\u6210\u8bc1\u4e66\u5e76\u90e8\u7f72 - \u4e00\u53ea\u5b89\u9759\u7684\u732b","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.myway5.com\/index.php\/2019\/07\/16\/cfssl\/","og_locale":"zh_CN","og_type":"article","og_title":"cfssl\u751f\u6210\u8bc1\u4e66\u5e76\u90e8\u7f72 - \u4e00\u53ea\u5b89\u9759\u7684\u732b","og_description":"\u5b89\u88c5 cfssl\u662f\u57fa\u4e8ego\u7684\uff0c\u56e0\u6b64\u9700\u8981\u5b89\u88c5go go get -u github.com\/cloudflare &hellip; \u7ee7\u7eed\u9605\u8bfbcfssl\u751f\u6210\u8bc1\u4e66\u5e76\u90e8\u7f72","og_url":"https:\/\/www.myway5.com\/index.php\/2019\/07\/16\/cfssl\/","og_site_name":"\u4e00\u53ea\u5b89\u9759\u7684\u732b","article_published_time":"2019-07-16T11:06:24+00:00","article_modified_time":"2023-07-05T13:41:25+00:00","author":"jiangpengfei","twitter_card":"summary_large_image","twitter_misc":{"\u4f5c\u8005":"jiangpengfei","\u9884\u8ba1\u9605\u8bfb\u65f6\u95f4":"2 \u5206"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.myway5.com\/index.php\/2019\/07\/16\/cfssl\/#article","isPartOf":{"@id":"https:\/\/www.myway5.com\/index.php\/2019\/07\/16\/cfssl\/"},"author":{"name":"jiangpengfei","@id":"https:\/\/www.myway5.com\/#\/schema\/person\/b19267e8b106343431e163ec96950685"},"headline":"cfssl\u751f\u6210\u8bc1\u4e66\u5e76\u90e8\u7f72","datePublished":"2019-07-16T11:06:24+00:00","dateModified":"2023-07-05T13:41:25+00:00","mainEntityOfPage":{"@id":"https:\/\/www.myway5.com\/index.php\/2019\/07\/16\/cfssl\/"},"wordCount":52,"commentCount":0,"publisher":{"@id":"https:\/\/www.myway5.com\/#\/schema\/person\/b19267e8b106343431e163ec96950685"},"articleSection":["k8s"],"inLanguage":"zh-Hans","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.myway5.com\/index.php\/2019\/07\/16\/cfssl\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.myway5.com\/index.php\/2019\/07\/16\/cfssl\/","url":"https:\/\/www.myway5.com\/index.php\/2019\/07\/16\/cfssl\/","name":"cfssl\u751f\u6210\u8bc1\u4e66\u5e76\u90e8\u7f72 - \u4e00\u53ea\u5b89\u9759\u7684\u732b","isPartOf":{"@id":"https:\/\/www.myway5.com\/#website"},"datePublished":"2019-07-16T11:06:24+00:00","dateModified":"2023-07-05T13:41:25+00:00","breadcrumb":{"@id":"https:\/\/www.myway5.com\/index.php\/2019\/07\/16\/cfssl\/#breadcrumb"},"inLanguage":"zh-Hans","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.myway5.com\/index.php\/2019\/07\/16\/cfssl\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.myway5.com\/index.php\/2019\/07\/16\/cfssl\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u9996\u9875","item":"https:\/\/www.myway5.com\/"},{"@type":"ListItem","position":2,"name":"cfssl\u751f\u6210\u8bc1\u4e66\u5e76\u90e8\u7f72"}]},{"@type":"WebSite","@id":"https:\/\/www.myway5.com\/#website","url":"https:\/\/www.myway5.com\/","name":"\u4e00\u53ea\u5b89\u9759\u7684\u732b","description":"\u60f3\u5565\u5462","publisher":{"@id":"https:\/\/www.myway5.com\/#\/schema\/person\/b19267e8b106343431e163ec96950685"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.myway5.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"zh-Hans"},{"@type":["Person","Organization"],"@id":"https:\/\/www.myway5.com\/#\/schema\/person\/b19267e8b106343431e163ec96950685","name":"jiangpengfei","image":{"@type":"ImageObject","inLanguage":"zh-Hans","@id":"https:\/\/www.myway5.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/f8c7de757f6e0247412bcfd31b7c2271?s=96&d=monsterid&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f8c7de757f6e0247412bcfd31b7c2271?s=96&d=monsterid&r=g","caption":"jiangpengfei"},"logo":{"@id":"https:\/\/www.myway5.com\/#\/schema\/person\/image\/"},"url":"https:\/\/www.myway5.com\/index.php\/author\/joyme\/"}]}},"views":7109,"_links":{"self":[{"href":"https:\/\/www.myway5.com\/index.php\/wp-json\/wp\/v2\/posts\/414","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.myway5.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.myway5.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.myway5.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.myway5.com\/index.php\/wp-json\/wp\/v2\/comments?post=414"}],"version-history":[{"count":1,"href":"https:\/\/www.myway5.com\/index.php\/wp-json\/wp\/v2\/posts\/414\/revisions"}],"predecessor-version":[{"id":415,"href":"https:\/\/www.myway5.com\/index.php\/wp-json\/wp\/v2\/posts\/414\/revisions\/415"}],"wp:attachment":[{"href":"https:\/\/www.myway5.com\/index.php\/wp-json\/wp\/v2\/media?parent=414"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.myway5.com\/index.php\/wp-json\/wp\/v2\/categories?post=414"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.myway5.com\/index.php\/wp-json\/wp\/v2\/tags?post=414"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}