{"id":28008,"date":"2025-04-19T22:26:04","date_gmt":"2025-04-19T14:26:04","guid":{"rendered":"https:\/\/www.wsisp.com\/helps\/28008.html"},"modified":"2025-04-19T22:26:04","modified_gmt":"2025-04-19T14:26:04","slug":"python%e5%ae%9e%e7%8e%b0%e4%b8%80%e4%b8%aa%e7%ae%80%e5%8d%95%e7%9a%84-http-echo-%e6%9c%8d%e5%8a%a1%e5%99%a8","status":"publish","type":"post","link":"https:\/\/www.wsisp.com\/helps\/28008.html","title":{"rendered":"Python\u5b9e\u73b0\u4e00\u4e2a\u7b80\u5355\u7684 HTTP echo \u670d\u52a1\u5668"},"content":{"rendered":"<p>\u4e00\u4e2a\u7528\u6765\u505a\u6d4b\u8bd5\u7684\u7b80\u5355\u7684 HTTP echo \u670d\u52a1\u5668\u3002<\/p>\n<p><span class=\"token keyword\">from<\/span> http<span class=\"token punctuation\">.<\/span>server <span class=\"token keyword\">import<\/span> HTTPServer<span class=\"token punctuation\">,<\/span> BaseHTTPRequestHandler<br \/>\n<span class=\"token keyword\">import<\/span> json<\/p>\n<p><span class=\"token keyword\">class<\/span> <span class=\"token class-name\">EchoHandler<\/span><span class=\"token punctuation\">(<\/span>BaseHTTPRequestHandler<span class=\"token punctuation\">)<\/span><span class=\"token punctuation\">:<\/span><br \/>\n    <span class=\"token keyword\">def<\/span> <span class=\"token function\">do_GET<\/span><span class=\"token punctuation\">(<\/span>self<span class=\"token punctuation\">)<\/span><span class=\"token punctuation\">:<\/span><br \/>\n        <span class=\"token comment\"># \u6784\u9020\u54cd\u5e94\u6570\u636e<\/span><br \/>\n        response_data <span class=\"token operator\">&#061;<\/span> <span class=\"token punctuation\">{<\/span><br \/>\n            <span class=\"token string\">&#039;path&#039;<\/span><span class=\"token punctuation\">:<\/span> self<span class=\"token punctuation\">.<\/span>path<span class=\"token punctuation\">,<\/span><br \/>\n            <span class=\"token string\">&#039;method&#039;<\/span><span class=\"token punctuation\">:<\/span> <span class=\"token string\">&#039;GET&#039;<\/span><span class=\"token punctuation\">,<\/span><br \/>\n            <span class=\"token string\">&#039;headers&#039;<\/span><span class=\"token punctuation\">:<\/span> <span class=\"token builtin\">dict<\/span><span class=\"token punctuation\">(<\/span>self<span class=\"token punctuation\">.<\/span>headers<span class=\"token punctuation\">)<\/span><span class=\"token punctuation\">,<\/span><br \/>\n            <span class=\"token string\">&#039;query_string&#039;<\/span><span class=\"token punctuation\">:<\/span> self<span class=\"token punctuation\">.<\/span>path<span class=\"token punctuation\">.<\/span>split<span class=\"token punctuation\">(<\/span><span class=\"token string\">&#039;?&#039;<\/span><span class=\"token punctuation\">)<\/span><span class=\"token punctuation\">[<\/span><span class=\"token number\">1<\/span><span class=\"token punctuation\">]<\/span> <span class=\"token keyword\">if<\/span> <span class=\"token string\">&#039;?&#039;<\/span> <span class=\"token keyword\">in<\/span> self<span class=\"token punctuation\">.<\/span>path <span class=\"token keyword\">else<\/span> <span class=\"token string\">&#039;&#039;<\/span><br \/>\n        <span class=\"token punctuation\">}<\/span><\/p>\n<p>        <span class=\"token comment\"># \u8bbe\u7f6e\u54cd\u5e94\u5934<\/span><br \/>\n        self<span class=\"token punctuation\">.<\/span>send_response<span class=\"token punctuation\">(<\/span><span class=\"token number\">200<\/span><span class=\"token punctuation\">)<\/span><br \/>\n        self<span class=\"token punctuation\">.<\/span>send_header<span class=\"token punctuation\">(<\/span><span class=\"token string\">&#039;Content-Type&#039;<\/span><span class=\"token punctuation\">,<\/span> <span class=\"token string\">&#039;application\/json&#039;<\/span><span class=\"token punctuation\">)<\/span><br \/>\n        self<span class=\"token punctuation\">.<\/span>end_headers<span class=\"token punctuation\">(<\/span><span class=\"token punctuation\">)<\/span><\/p>\n<p>        <span class=\"token comment\"># \u53d1\u9001\u54cd\u5e94<\/span><br \/>\n        self<span class=\"token punctuation\">.<\/span>wfile<span class=\"token punctuation\">.<\/span>write<span class=\"token punctuation\">(<\/span>json<span class=\"token punctuation\">.<\/span>dumps<span class=\"token punctuation\">(<\/span>response_data<span class=\"token punctuation\">,<\/span> indent<span class=\"token operator\">&#061;<\/span><span class=\"token number\">2<\/span><span class=\"token punctuation\">)<\/span><span class=\"token punctuation\">.<\/span>encode<span class=\"token punctuation\">(<\/span><span class=\"token punctuation\">)<\/span><span class=\"token punctuation\">)<\/span><\/p>\n<p>    <span class=\"token keyword\">def<\/span> <span class=\"token function\">do_POST<\/span><span class=\"token punctuation\">(<\/span>self<span class=\"token punctuation\">)<\/span><span class=\"token punctuation\">:<\/span><br \/>\n        <span class=\"token comment\"># \u83b7\u53d6\u8bf7\u6c42\u4f53\u957f\u5ea6<\/span><br \/>\n        content_length <span class=\"token operator\">&#061;<\/span> <span class=\"token builtin\">int<\/span><span class=\"token punctuation\">(<\/span>self<span class=\"token punctuation\">.<\/span>headers<span class=\"token punctuation\">.<\/span>get<span class=\"token punctuation\">(<\/span><span class=\"token string\">&#039;Content-Length&#039;<\/span><span class=\"token punctuation\">,<\/span> <span class=\"token number\">0<\/span><span class=\"token punctuation\">)<\/span><span class=\"token punctuation\">)<\/span><br \/>\n        <span class=\"token comment\"># \u8bfb\u53d6\u8bf7\u6c42\u4f53<\/span><br \/>\n        body <span class=\"token operator\">&#061;<\/span> self<span class=\"token punctuation\">.<\/span>rfile<span class=\"token punctuation\">.<\/span>read<span class=\"token punctuation\">(<\/span>content_length<span class=\"token punctuation\">)<\/span><span class=\"token punctuation\">.<\/span>decode<span class=\"token punctuation\">(<\/span><span class=\"token punctuation\">)<\/span><\/p>\n<p>        <span class=\"token comment\"># \u6784\u9020\u54cd\u5e94\u6570\u636e<\/span><br \/>\n        response_data <span class=\"token operator\">&#061;<\/span> <span class=\"token punctuation\">{<\/span><br \/>\n            <span class=\"token string\">&#039;path&#039;<\/span><span class=\"token punctuation\">:<\/span> self<span class=\"token punctuation\">.<\/span>path<span class=\"token punctuation\">,<\/span><br \/>\n            <span class=\"token string\">&#039;method&#039;<\/span><span class=\"token punctuation\">:<\/span> <span class=\"token string\">&#039;POST&#039;<\/span><span class=\"token punctuation\">,<\/span><br \/>\n            <span class=\"token string\">&#039;headers&#039;<\/span><span class=\"token punctuation\">:<\/span> <span class=\"token builtin\">dict<\/span><span class=\"token punctuation\">(<\/span>self<span class=\"token punctuation\">.<\/span>headers<span class=\"token punctuation\">)<\/span><span class=\"token punctuation\">,<\/span><br \/>\n            <span class=\"token string\">&#039;body&#039;<\/span><span class=\"token punctuation\">:<\/span> body<br \/>\n        <span class=\"token punctuation\">}<\/span><\/p>\n<p>        <span class=\"token comment\"># \u8bbe\u7f6e\u54cd\u5e94\u5934<\/span><br \/>\n        self<span class=\"token punctuation\">.<\/span>send_response<span class=\"token punctuation\">(<\/span><span class=\"token number\">200<\/span><span class=\"token punctuation\">)<\/span><br \/>\n        self<span class=\"token punctuation\">.<\/span>send_header<span class=\"token punctuation\">(<\/span><span class=\"token string\">&#039;Content-Type&#039;<\/span><span class=\"token punctuation\">,<\/span> <span class=\"token string\">&#039;application\/json&#039;<\/span><span class=\"token punctuation\">)<\/span><br \/>\n        self<span class=\"token punctuation\">.<\/span>end_headers<span class=\"token punctuation\">(<\/span><span class=\"token punctuation\">)<\/span><\/p>\n<p>        <span class=\"token comment\"># \u53d1\u9001\u54cd\u5e94<\/span><br \/>\n        self<span class=\"token punctuation\">.<\/span>wfile<span class=\"token punctuation\">.<\/span>write<span class=\"token punctuation\">(<\/span>json<span class=\"token punctuation\">.<\/span>dumps<span class=\"token punctuation\">(<\/span>response_data<span class=\"token punctuation\">,<\/span> indent<span class=\"token operator\">&#061;<\/span><span class=\"token number\">2<\/span><span class=\"token punctuation\">)<\/span><span class=\"token punctuation\">.<\/span>encode<span class=\"token punctuation\">(<\/span><span class=\"token punctuation\">)<\/span><span class=\"token punctuation\">)<\/span><\/p>\n<p><span class=\"token keyword\">def<\/span> <span class=\"token function\">run_server<\/span><span class=\"token punctuation\">(<\/span>port<span class=\"token operator\">&#061;<\/span><span class=\"token number\">8000<\/span><span class=\"token punctuation\">)<\/span><span class=\"token punctuation\">:<\/span><br \/>\n    server_address <span class=\"token operator\">&#061;<\/span> <span class=\"token punctuation\">(<\/span><span class=\"token string\">&#039;&#039;<\/span><span class=\"token punctuation\">,<\/span> port<span class=\"token punctuation\">)<\/span><br \/>\n    httpd <span class=\"token operator\">&#061;<\/span> HTTPServer<span class=\"token punctuation\">(<\/span>server_address<span class=\"token punctuation\">,<\/span> EchoHandler<span class=\"token punctuation\">)<\/span><br \/>\n    <span class=\"token keyword\">print<\/span><span class=\"token punctuation\">(<\/span><span class=\"token string-interpolation\"><span class=\"token string\">f&#039;Starting server on port <\/span><span class=\"token interpolation\"><span class=\"token punctuation\">{<\/span>port<span class=\"token punctuation\">}<\/span><\/span><span class=\"token string\">&#8230;&#039;<\/span><\/span><span class=\"token punctuation\">)<\/span><br \/>\n    httpd<span class=\"token punctuation\">.<\/span>serve_forever<span class=\"token punctuation\">(<\/span><span class=\"token punctuation\">)<\/span><\/p>\n<p><span class=\"token keyword\">if<\/span> __name__ <span class=\"token operator\">&#061;&#061;<\/span> <span class=\"token string\">&#039;__main__&#039;<\/span><span class=\"token punctuation\">:<\/span><br \/>\n    run_server<span class=\"token punctuation\">(<\/span><span class=\"token punctuation\">)<\/span><\/p>\n<p>\u8fd9\u4e2a HTTP echo \u670d\u52a1\u5668\u7684\u7279\u70b9&#xff1a;<\/p>\n<li>\u652f\u6301 GET \u548c POST \u8bf7\u6c42<\/li>\n<li>\u8fd4\u56de JSON \u683c\u5f0f\u7684\u54cd\u5e94<\/li>\n<li>\u5bf9\u4e8e GET \u8bf7\u6c42&#xff0c;\u4f1a\u8fd4\u56de&#xff1a;\n<ul>\n<li>\u8bf7\u6c42\u8def\u5f84<\/li>\n<li>\u8bf7\u6c42\u65b9\u6cd5<\/li>\n<li>\u8bf7\u6c42\u5934<\/li>\n<li>\u67e5\u8be2\u5b57\u7b26\u4e32<\/li>\n<\/ul>\n<\/li>\n<li>\u5bf9\u4e8e POST \u8bf7\u6c42&#xff0c;\u989d\u5916\u8fd4\u56de\u8bf7\u6c42\u4f53\u5185\u5bb9<\/li>\n<p>\u4f7f\u7528\u65b9\u6cd5&#xff1a;<\/p>\n<li>\u8fd0\u884c\u811a\u672c\u542f\u52a8\u670d\u52a1\u5668<\/li>\n<li>\u4f7f\u7528\u6d4f\u89c8\u5668\u6216 curl \u8bbf\u95ee http:\/\/localhost:8000<\/li>\n<p>\u6d4b\u8bd5\u793a\u4f8b&#xff1a;<\/p>\n<p><span class=\"token comment\"># GET \u8bf7\u6c42<\/span><br \/>\n<span class=\"token function\">curl<\/span> http:\/\/localhost:8000\/test?foo<span class=\"token operator\">&#061;<\/span>bar<\/p>\n<p><span class=\"token comment\"># POST \u8bf7\u6c42<\/span><br \/>\n<span class=\"token function\">curl<\/span> <span class=\"token parameter variable\">-X<\/span> POST <span class=\"token parameter variable\">-d<\/span> <span class=\"token string\">&#034;hello&#061;world&#034;<\/span> http:\/\/localhost:8000\/test<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u6587\u7ae0\u6d4f\u89c8\u9605\u8bfb798\u6b21\u3002\u4e00\u4e2a\u7528\u6765\u505a\u6d4b\u8bd5\u7684\u7b80\u5355\u7684 HTTP echo \u670d\u52a1\u5668\u3002_python simple echo server<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[151,81,43],"topic":[],"class_list":["post-28008","post","type-post","status-publish","format-standard","hentry","category-server","tag-http","tag-python","tag-43"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v20.3 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Python\u5b9e\u73b0\u4e00\u4e2a\u7b80\u5355\u7684 HTTP echo \u670d\u52a1\u5668 - \u7f51\u7855\u4e92\u8054\u5e2e\u52a9\u4e2d\u5fc3<\/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.wsisp.com\/helps\/28008.html\" \/>\n<meta property=\"og:locale\" content=\"zh_CN\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Python\u5b9e\u73b0\u4e00\u4e2a\u7b80\u5355\u7684 HTTP echo \u670d\u52a1\u5668 - \u7f51\u7855\u4e92\u8054\u5e2e\u52a9\u4e2d\u5fc3\" \/>\n<meta property=\"og:description\" content=\"\u6587\u7ae0\u6d4f\u89c8\u9605\u8bfb798\u6b21\u3002\u4e00\u4e2a\u7528\u6765\u505a\u6d4b\u8bd5\u7684\u7b80\u5355\u7684 HTTP echo \u670d\u52a1\u5668\u3002_python simple echo server\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.wsisp.com\/helps\/28008.html\" \/>\n<meta property=\"og:site_name\" content=\"\u7f51\u7855\u4e92\u8054\u5e2e\u52a9\u4e2d\u5fc3\" \/>\n<meta property=\"article:published_time\" content=\"2025-04-19T14:26:04+00:00\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u4f5c\u8005\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"\u9884\u8ba1\u9605\u8bfb\u65f6\u95f4\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 \u5206\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.wsisp.com\/helps\/28008.html\",\"url\":\"https:\/\/www.wsisp.com\/helps\/28008.html\",\"name\":\"Python\u5b9e\u73b0\u4e00\u4e2a\u7b80\u5355\u7684 HTTP echo \u670d\u52a1\u5668 - \u7f51\u7855\u4e92\u8054\u5e2e\u52a9\u4e2d\u5fc3\",\"isPartOf\":{\"@id\":\"https:\/\/www.wsisp.com\/helps\/#website\"},\"datePublished\":\"2025-04-19T14:26:04+00:00\",\"dateModified\":\"2025-04-19T14:26:04+00:00\",\"author\":{\"@id\":\"https:\/\/www.wsisp.com\/helps\/#\/schema\/person\/358e386c577a3ab51c4493330a20ad41\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.wsisp.com\/helps\/28008.html#breadcrumb\"},\"inLanguage\":\"zh-Hans\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.wsisp.com\/helps\/28008.html\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.wsisp.com\/helps\/28008.html#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u9996\u9875\",\"item\":\"https:\/\/www.wsisp.com\/helps\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Python\u5b9e\u73b0\u4e00\u4e2a\u7b80\u5355\u7684 HTTP echo \u670d\u52a1\u5668\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.wsisp.com\/helps\/#website\",\"url\":\"https:\/\/www.wsisp.com\/helps\/\",\"name\":\"\u7f51\u7855\u4e92\u8054\u5e2e\u52a9\u4e2d\u5fc3\",\"description\":\"\u9999\u6e2f\u670d\u52a1\u5668_\u9999\u6e2f\u4e91\u670d\u52a1\u5668\u8d44\u8baf_\u670d\u52a1\u5668\u5e2e\u52a9\u6587\u6863_\u670d\u52a1\u5668\u6559\u7a0b\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.wsisp.com\/helps\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"zh-Hans\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.wsisp.com\/helps\/#\/schema\/person\/358e386c577a3ab51c4493330a20ad41\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"zh-Hans\",\"@id\":\"https:\/\/www.wsisp.com\/helps\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/gravatar.wp-china-yes.net\/avatar\/?s=96&d=mystery\",\"contentUrl\":\"https:\/\/gravatar.wp-china-yes.net\/avatar\/?s=96&d=mystery\",\"caption\":\"admin\"},\"sameAs\":[\"http:\/\/wp.wsisp.com\"],\"url\":\"https:\/\/www.wsisp.com\/helps\/author\/admin\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Python\u5b9e\u73b0\u4e00\u4e2a\u7b80\u5355\u7684 HTTP echo \u670d\u52a1\u5668 - \u7f51\u7855\u4e92\u8054\u5e2e\u52a9\u4e2d\u5fc3","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.wsisp.com\/helps\/28008.html","og_locale":"zh_CN","og_type":"article","og_title":"Python\u5b9e\u73b0\u4e00\u4e2a\u7b80\u5355\u7684 HTTP echo \u670d\u52a1\u5668 - \u7f51\u7855\u4e92\u8054\u5e2e\u52a9\u4e2d\u5fc3","og_description":"\u6587\u7ae0\u6d4f\u89c8\u9605\u8bfb798\u6b21\u3002\u4e00\u4e2a\u7528\u6765\u505a\u6d4b\u8bd5\u7684\u7b80\u5355\u7684 HTTP echo \u670d\u52a1\u5668\u3002_python simple echo server","og_url":"https:\/\/www.wsisp.com\/helps\/28008.html","og_site_name":"\u7f51\u7855\u4e92\u8054\u5e2e\u52a9\u4e2d\u5fc3","article_published_time":"2025-04-19T14:26:04+00:00","author":"admin","twitter_card":"summary_large_image","twitter_misc":{"\u4f5c\u8005":"admin","\u9884\u8ba1\u9605\u8bfb\u65f6\u95f4":"1 \u5206"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.wsisp.com\/helps\/28008.html","url":"https:\/\/www.wsisp.com\/helps\/28008.html","name":"Python\u5b9e\u73b0\u4e00\u4e2a\u7b80\u5355\u7684 HTTP echo \u670d\u52a1\u5668 - \u7f51\u7855\u4e92\u8054\u5e2e\u52a9\u4e2d\u5fc3","isPartOf":{"@id":"https:\/\/www.wsisp.com\/helps\/#website"},"datePublished":"2025-04-19T14:26:04+00:00","dateModified":"2025-04-19T14:26:04+00:00","author":{"@id":"https:\/\/www.wsisp.com\/helps\/#\/schema\/person\/358e386c577a3ab51c4493330a20ad41"},"breadcrumb":{"@id":"https:\/\/www.wsisp.com\/helps\/28008.html#breadcrumb"},"inLanguage":"zh-Hans","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.wsisp.com\/helps\/28008.html"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.wsisp.com\/helps\/28008.html#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u9996\u9875","item":"https:\/\/www.wsisp.com\/helps"},{"@type":"ListItem","position":2,"name":"Python\u5b9e\u73b0\u4e00\u4e2a\u7b80\u5355\u7684 HTTP echo \u670d\u52a1\u5668"}]},{"@type":"WebSite","@id":"https:\/\/www.wsisp.com\/helps\/#website","url":"https:\/\/www.wsisp.com\/helps\/","name":"\u7f51\u7855\u4e92\u8054\u5e2e\u52a9\u4e2d\u5fc3","description":"\u9999\u6e2f\u670d\u52a1\u5668_\u9999\u6e2f\u4e91\u670d\u52a1\u5668\u8d44\u8baf_\u670d\u52a1\u5668\u5e2e\u52a9\u6587\u6863_\u670d\u52a1\u5668\u6559\u7a0b","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.wsisp.com\/helps\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"zh-Hans"},{"@type":"Person","@id":"https:\/\/www.wsisp.com\/helps\/#\/schema\/person\/358e386c577a3ab51c4493330a20ad41","name":"admin","image":{"@type":"ImageObject","inLanguage":"zh-Hans","@id":"https:\/\/www.wsisp.com\/helps\/#\/schema\/person\/image\/","url":"https:\/\/gravatar.wp-china-yes.net\/avatar\/?s=96&d=mystery","contentUrl":"https:\/\/gravatar.wp-china-yes.net\/avatar\/?s=96&d=mystery","caption":"admin"},"sameAs":["http:\/\/wp.wsisp.com"],"url":"https:\/\/www.wsisp.com\/helps\/author\/admin"}]}},"_links":{"self":[{"href":"https:\/\/www.wsisp.com\/helps\/wp-json\/wp\/v2\/posts\/28008","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.wsisp.com\/helps\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.wsisp.com\/helps\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.wsisp.com\/helps\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.wsisp.com\/helps\/wp-json\/wp\/v2\/comments?post=28008"}],"version-history":[{"count":0,"href":"https:\/\/www.wsisp.com\/helps\/wp-json\/wp\/v2\/posts\/28008\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.wsisp.com\/helps\/wp-json\/wp\/v2\/media?parent=28008"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.wsisp.com\/helps\/wp-json\/wp\/v2\/categories?post=28008"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.wsisp.com\/helps\/wp-json\/wp\/v2\/tags?post=28008"},{"taxonomy":"topic","embeddable":true,"href":"https:\/\/www.wsisp.com\/helps\/wp-json\/wp\/v2\/topic?post=28008"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}