{"id":902,"date":"2017-12-16T01:18:57","date_gmt":"2017-12-15T16:18:57","guid":{"rendered":"http:\/\/sarang.inmu.net\/?p=902"},"modified":"2017-12-16T01:25:00","modified_gmt":"2017-12-15T16:25:00","slug":"ajax%eb%a5%bc-%ec%82%ac%ec%9a%a9%ed%95%b4%ec%84%9c-%ec%84%9c%eb%b2%84%ec%9d%98-%ec%8b%9c%ea%b0%84%ec%9d%84-%eb%b3%b4%ec%97%ac-%ec%a3%bc%ea%b8%b0","status":"publish","type":"post","link":"https:\/\/sarang.inmu.net\/?p=902","title":{"rendered":"ajax\ub97c \uc0ac\uc6a9\ud574\uc11c \uc11c\ubc84\uc758 \uc2dc\uac04\uc744 \ubcf4\uc5ec \uc8fc\uae30"},"content":{"rendered":"<p>\uc790\ubc14\uc2a4\ud06c\ub9bd\ud2b8\uc5d0\uc11c setInterval() \uc744 \uc774\uc6a9\ud558\uba74 \uc9c0\uc815\ud55c \ubc00\ub9ac\uc138\ucee8\ub4dc \ub2e8\uc704\ub85c \ubb34\uc5b8\uac00\ub97c \uc2e4\ud589\ud560 \uc218 \uc788\ub2e4.<\/p>\n<p>\uc774 \ud568\uc218\uc5d0 ajax\ub97c \ub123\uc5b4\uc11c 1\ucd08\uc5d0 \ud55c\ubc88 \uc529 \uc2e4\ud589\ub418\uac8c \ud55c\ub2e4\uba74 \uc11c\ubc84\uc758 \uc2dc\uac04\uc744 \ube0c\ub77c\uc6b0\uc800\ub85c \ubcf4\ub0bc \uc218 \uc788\ub2e4.<\/p>\n<p>\uc11c\ubc84\uc5d0\uc11c \ud560 \uc77c\uc740 php\uc758 date()\ud568\uc218\uc640 time() \ud568\uc218\ub97c \uc774\uc6a9\ud574\uc11c \uc2e4\uc2dc\uac04\uc744 echo\ud558\uba74 \ub41c\ub2e4. \uc774 \uc608\uc81c\uc5d0\uc11c\ub294 util.php?mode=nowTime \ub9c1\ud06c\uc5d0\uc11c \uad6c\ud604\ud558\uc600\ub2e4.<br \/>\nutil.php \uc758 \ucf54\ub4dc \ub0b4\uc6a9\uc740 \uc544\ub798\uc640 \uac19\ub2e4.<\/p>\n<pre class=\"lang:default decode:true \" title=\"util.php\uc758 \ub0b4\uc6a9\">&lt;?php\n$mode = $_GET['mode'];\n\nswitch($mode){\n    case 'nowTime':\n        echo date(\"Y\ub144 m\uc6d4 d\uc77c H:i:s\",time());\n        break;\n    default:\n        break;\n}<\/pre>\n<p>\uadf8\ub9ac\uace0 html\uacfc javascript\ub97c \ud1b5\ud574\uc11c ajax\ub97c \uad6c\ud604\ud55c\ub2e4.<br \/>\n$.get \ud568\uc218\ub97c \uc774\uc6a9\ud558\uba74 \uac04\ub2e8\ud55c \uba87 \uc904\ub85c ajax\ub97c \uad6c\ud604\ud560 \uc218 \uc788\ub2e4. \ucf54\ub4dc\ub294 \uc544\ub798\uc640 \uac19\ub2e4. \ubb3c\ub860 \ud5e4\ub354\uc5d0 jquery\ub97c import\ud558\ub294 \uac83\uc744 \uc78a\uc9c0 \ub9d0\uc790. \uc0ac\uc18c\ud55c \uc2e4\uc218\ub294 \uc0bd\uc9c8\uacfc \ud568\uaed8 \ub0b4\uba74\uc758 \ubd84\ub178\ub97c \ub9cc\ub4e0\ub2e4.<\/p>\n<pre class=\"lang:default decode:true \">&lt;!DOCTYPE html&gt;\n&lt;html&gt;\n&lt;head&gt;\n&lt;meta charset='utf-8' \/&gt;\n&lt;meta name='apple-mobile-web-app-capable' content='yes' \/&gt;\n&lt;meta name='apple-mobile-web-app-status-bar-style' content='black-translucent' \/&gt;\n&lt;meta http-equiv='X-UA-Compatible' content='IE=edge, chrome=1' \/&gt;\n&lt;meta name='viewport' content='width=device-width, initial-scale=1.0, minimum-scale=1.0, user-scalable=no' \/&gt;\n&lt;link rel='stylesheet' href='http:\/\/lib.inmu.net\/jquery\/jquery.mobile-1.4.5.min.css' \/&gt;\n&lt;script src='http:\/\/lib.inmu.net\/jquery\/jquery_3_min.js'&gt;&lt;\/script&gt;\n&lt;script src='http:\/\/lib.inmu.net\/jquery\/jquery.mobile-1.4.5.min.js'&gt;&lt;\/script&gt;\n&lt;style&gt;\nbody{\n    padding:1rem;\n    color:#717171;\n    font-size:.8rem\n}\np,div{\n    padding:.2rem;\n    border-bottom:1px solid #717171;\n}\n#ajax_001{\n    font-size:4rem;\n    color:#717171;\n}\n&lt;\/style&gt;\n&lt;script&gt;\n$(window).ready(function(){\n    setInterval(function(){\n        $.get( \"util.php\", { mode: \"nowTime\" } )\n            .done(function( data ) {\n             $(\"#ajax_001\").html(data );\n        });\n    },1000);\n});\n&lt;\/script&gt;\n\n\n&lt;title&gt;1712 \uccab\ubc88\uc9f8 \uc5f0\uc2b5&lt;\/title&gt;\n&lt;\/head&gt;\n&lt;body&gt;\n\n&lt;p&gt;\uc544\ub798\uc5d0 \uc11c\ubc84\uc758 \uc2dc\uac04\uc744 \ubcf4\uc5ec\uc900\ub2e4.&lt;\/p&gt;\n&lt;div id=\"ajax_001\"&gt;&lt;\/div&gt;\n\n&lt;\/body&gt;\n&lt;\/html&gt;<\/pre>\n<p>\uc774\uc81c \ube0c\ub77c\uc6b0\uc800\uc5d0\uc11c \uc11c\ubc84\uc758 \uc2dc\uac04\uc744 1\ucd08\uc5d0 \ud55c \ubc88\uc529 \uc804\uc1a1 \ubc1b\uc744 \uc218 \uc788\uac8c \ub418\uc5c8\ub2e4.<\/p>\n<p>\uc544\ub798\uc5d0 \uc608\uc81c \ud398\uc774\uc9c0\ub97c \ubcfc \uc218 \uc788\ub294 \ub9c1\ud06c\uac00 \uc788\ub2e4.<\/p>\n<p><a href=\"http:\/\/exam.inmu.net\/1712\/001.php\" target=\"_blank\" rel=\"noopener\">http:\/\/exam.inmu.net\/1712\/001.php<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>\uc790\ubc14\uc2a4\ud06c\ub9bd\ud2b8\uc5d0\uc11c setInterval() \uc744 \uc774\uc6a9\ud558\uba74 \uc9c0\uc815\ud55c \ubc00\ub9ac\uc138\ucee8\ub4dc \ub2e8\uc704\ub85c \ubb34\uc5b8\uac00\ub97c \uc2e4\ud589\ud560 \uc218 \uc788\ub2e4. \uc774 \ud568\uc218\uc5d0 ajax\ub97c \ub123\uc5b4\uc11c 1\ucd08\uc5d0 \ud55c\ubc88 \uc529 \uc2e4\ud589\ub418\uac8c \ud55c\ub2e4\uba74 \uc11c\ubc84\uc758 \uc2dc\uac04\uc744 \ube0c\ub77c\uc6b0\uc800\ub85c \ubcf4\ub0bc \uc218 \uc788\ub2e4. \uc11c\ubc84\uc5d0\uc11c \ud560 \uc77c\uc740 php\uc758 date()\ud568\uc218\uc640 time() \ud568\uc218\ub97c \uc774\uc6a9\ud574\uc11c \uc2e4\uc2dc\uac04\uc744 echo\ud558\uba74 \ub41c\ub2e4. \uc774 \uc608\uc81c\uc5d0\uc11c\ub294 util.php?mode=nowTime \ub9c1\ud06c\uc5d0\uc11c \uad6c\ud604\ud558\uc600\ub2e4. util.php \uc758 \ucf54\ub4dc \ub0b4\uc6a9\uc740 \uc544\ub798\uc640 \uac19\ub2e4. &lt;?php $mode = $_GET[&#8216;mode&#8217;]; switch($mode){ case &#8216;nowTime&#8217;: &hellip; <a href=\"https:\/\/sarang.inmu.net\/?p=902\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;ajax\ub97c \uc0ac\uc6a9\ud574\uc11c \uc11c\ubc84\uc758 \uc2dc\uac04\uc744 \ubcf4\uc5ec \uc8fc\uae30&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_exactmetrics_skip_tracking":false,"_exactmetrics_sitenote_active":false,"_exactmetrics_sitenote_note":"","_exactmetrics_sitenote_category":0,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_feature_clip_id":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2},"jetpack_post_was_ever_published":false},"categories":[5],"tags":[103,44,104],"class_list":["post-902","post","type-post","status-publish","format-standard","hentry","category-5","tag-ajax","tag-php","tag-time"],"jetpack_publicize_connections":[],"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack-related-posts":[{"id":750,"url":"https:\/\/sarang.inmu.net\/?p=750","url_meta":{"origin":902,"position":0},"title":"\ud654\uba74\uc758 \ud06c\uae30, CSS, Javascript \uadf8\ub9ac\uace0 php","author":"sarang","date":"2017\ub144 01\uc6d4 20\uc77c","format":false,"excerpt":"\uc6f9\uc791\uc5c5\uc744 \ud558\ub2e4 \ubcf4\uba74 \uac00\ub054 \uc0ac\uc6a9\uc790\uc758 \ud654\uba74 \ud06c\uae30\ub97c \uc54c\uace0 \uc2f6\uc744 \ub54c\uac00 \uc788\ub2e4. \ub514\uc790\uc778\uc801\uc778 \uce21\uba74\uc5d0\uc11c \ud574\uc0c1\ub3c4\uc5d0 \ub530\ub77c\uc11c \ub2e4\ub978 \ud06c\uae30\ub098 \ub0b4\uc6a9\uc744 \ubcf4\uc5ec \uc904 \uc218 \uc788\ub294\ub370 \uc694\uc998\uc740 CSS\ub97c \uc0ac\uc6a9\ud558\uc5ec \ube0c\ub77c\uc6b0\uc800\uc758 \ud06c\uae30\uc5d0 \ub530\ub77c\uc11c \ub2e4\ub978 \ub514\uc790\uc778\uc744 \ubcf4\uc5ec \uc8fc\uace4\ud55c\ub2e4. \ubcf4\ud1b5 \ucf54\ub4dc\ub294 \uc544\ub798\uc640 \uac19\ub2e4. \uc704\uc640 \uac19\uc740 \ucf54\ub4dc\ub97c \uc774\uc6a9\ud558\uba74 \uc0ac\uc6a9\uc790\uc758 \ud654\uba74 \ud06c\uae30\uc5d0 \ub530\ub77c\uc11c \ub2e4\ub978 \ub514\uc790\uc778 \uc801\uc6a9\uc774 \uac00\ub2a5\ud558\ub2e4. \ub110\ub9ac \uc54c\ub824\uc838\u2026","rel":"","context":"&quot;\ucef4\ud4e8\ud130&quot;\uc5d0\uc11c","block_context":{"text":"\ucef4\ud4e8\ud130","link":"https:\/\/sarang.inmu.net\/?cat=5"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":1159,"url":"https:\/\/sarang.inmu.net\/?p=1159","url_meta":{"origin":902,"position":1},"title":"php \ubb38\uc790\uc14b","author":"sarang","date":"2019\ub144 04\uc6d4 08\uc77c","format":false,"excerpt":"\uac1c\ubc1c\uc740 \ub098\ud63c\uc790 \ud558\ub294\uac8c \uc544\ub2c8\ubbc0\ub85c \uc11c\ub85c\uc758 \ubb38\uc790\uc14b\uc744 \ub9de\ucd94\ub294\uac8c \uc911\uc694\ud55c\ub370 \ucd5c\uadfc \uc6f9\ubb38\uc11c\uc758 \ubb38\uc790\uc14b\uc740 \ub300\ubd80\ubd84 utf-8\ub85c \uc138\ud305 \ub418\uc5b4 \uc788\ub294 \uacbd\uc6b0\uac00 \ub9ce\ub2e4. php\ub85c \uc791\uc5c5\uc744 \ud558\ub2e4 \ubcf4\uba74 \ubb38\uc790\uac00 \uae68\uc9c0\ub294 \uacbd\uc6b0\uac00 \uc885\uc885 \uc788\ub294\ub370 \uba87\uac00\uc9c0 \uc6d0\uc778\uc774 \uc788\ub2e4. \uc6f9\uc11c\ubc84\uc758 \ubb38\uc790\uc14b, php.ini\uc5d0\uc11c \uc124\uc815\ub41c \ubb38\uc790\uc14b \uadf8\ub9ac\uace0 mysql\uacfc \uac19\uc740 DB\uc5d0\uc11c \uc124\uc815\ub41c \ubb38\uc790 \uc14b\uc778\ub370 \uc774 \uc911 \ud558\ub098\ub77c\ub3c4 \ud1b5\uc77c \ub418\uc5b4 \uc788\uc9c0 \uc54a\ub2e4\uba74 \uc5b4\ub514\uc5d0\uc120\uac00\u2026","rel":"","context":"&quot;\ucef4\ud4e8\ud130&quot;\uc5d0\uc11c","block_context":{"text":"\ucef4\ud4e8\ud130","link":"https:\/\/sarang.inmu.net\/?cat=5"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":25,"url":"https:\/\/sarang.inmu.net\/?p=25","url_meta":{"origin":902,"position":2},"title":"\uac04\ub2e8\ud301 \ubaa8\uc74c","author":"sarang","date":"2016\ub144 01\uc6d4 30\uc77c","format":false,"excerpt":"\ud30c\uc77c \uac2f\uc218\uac00 \ub9ce\uc544\uc11c \uc9c0\uc6cc\uc9c0\uc9c0 \uc54a\uc744 \ub54c find . -name '*' -exec rm -f {}\\; \u00a0 utf-8\ub85c \uba54\uc77c \ubcf4\ub0b4\uae30 \uc608\uc81c $from_name=\"=?utf-8?B?\".base64_encode('\uba54\uc77c \uc81c\ubaa9').\"?=\"; $header=\"FROM: \".$from_name.\"\\nReturn-Path:sarang@inmu.net\\nX-Sender:sarang@inmu.net\\n'Content-Type: text\/html;charset=utf-8'\\n\"; $mail_subject='=?utf-8?B?'.base64_encode('\uba54\uc77c\uc81c\ubaa9').'?='; mail('\ubc1b\ub294\uc774\uba54\uc77c\uc8fc\uc18c',$mail_subject,'\uba54\uc77c \ubcf8\ubb38',$header); \u00a0 FTP \ub9c1\ud06c \ub9cc\ub4e4\uae30 ftp:\/\/myid:mypassword@sarang.inmu.net:21\/mydir\/myfile \uc704\uc758 \ub9c1\ud06c\ub294 21\ubc88 \ud3ec\ud2b8\ub85c FTP\uc11c\ubc84\uc5d0 \uc811\uc18d\ud558\uc5ec mydir\ud3f4\ub354\uc5d0\uc11c myfile\uc744 \ub2e4\uc6b4 \ubc1b\ub294 \ub9c1\ud06c\ub97c \ub9cc\ub4e0\ub2e4. a \ud0dc\uadf8\uc5d0 \uc0ac\uc6a9\ud560 \uc218 \uc788\ub2e4. \uc774\ud074\ub9bd\uc2a4\u2026","rel":"","context":"&quot;\ucef4\ud4e8\ud130&quot;\uc5d0\uc11c","block_context":{"text":"\ucef4\ud4e8\ud130","link":"https:\/\/sarang.inmu.net\/?cat=5"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":576,"url":"https:\/\/sarang.inmu.net\/?p=576","url_meta":{"origin":902,"position":3},"title":"PHP \ubc30\uc5f4","author":"sarang","date":"2016\ub144 06\uc6d4 28\uc77c","format":false,"excerpt":"foreach ( $_SERVER as $key => $val ) { $$key = $val; $o .= $key . \" => \" . $val . \"<br \/>\"; } \ubc30\uc5f4\uc758 \ud0a4\uac12\uc73c\ub85c \ub2e4\uc2dc \uc774\ub984\uc744 \uc815\uc758\ud558\ub294 \ucf54\ub4dc\uc774\ub2e4. $_GET $_POST \ub4f1 \uc11c\ubc84\uc758 \ubc30\uc5f4 \uac12\uc73c\ub85c \uc0ac\uc6a9\ud558\uba74 \ub3c4\uc6c0\uc774 \ub420 \ub4ef. \ub8e8\ud504\uc5d0\uc11c \ud574\uc57c \ub420 \uc791\uc5c5\uc774 \uc788\uc73c\uba74 \uac19\uc774 \uc9c4\ud589\ud574\ub3c4 \ub41c\ub2e4. \uc608\ub97c\u2026","rel":"","context":"&quot;\ucef4\ud4e8\ud130&quot;\uc5d0\uc11c","block_context":{"text":"\ucef4\ud4e8\ud130","link":"https:\/\/sarang.inmu.net\/?cat=5"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":744,"url":"https:\/\/sarang.inmu.net\/?p=744","url_meta":{"origin":902,"position":4},"title":"CSS \ud639\uc740 JS \ud30c\uc77c\uc758 \uce90\uc2dc","author":"sarang","date":"2017\ub144 01\uc6d4 10\uc77c","format":false,"excerpt":"\ud648\ud398\uc774\uc9c0\ub97c \uac1c\ubc1c \ud560 \ub54c CSS, \ud639\uc740 JS\ud30c\uc77c\uc744 \uc678\ubd80\uc5d0 \ub450\uace0 \uc0ac\uc6a9\ud560 \ub54c\uac00 \ub9ce\uc774 \uc788\ub2e4. HTML\uc740 \uc218\uc815\ud560 \ub54c \uc989\uc2dc \ubc18\uc601\uc774 \ub418\uc9c0\ub9cc \uc678\ubd80\uc5d0 \uc788\ub294 \uc800\ub7f0 \ud30c\uc77c\ub4e4\uc740 \uce90\uc2dc \ub54c\ubb38\uc5d0 \uc989\uc2dc \ubc18\uc601\uc774 \ub418\uc9c0 \uc54a\uace0 CTRL + SHIFT + R \ud0a4\ub97c \ub20c\ub7ec\uc11c \ube0c\ub77c\uc6b0\uc800\ub97c \uc644\uc804 \uc0c8\ub85c \uace0\uce68\ud574\uc57c \ub41c\ub2e4. \uac1c\ubc1c\ud558\ub294 \uc0ac\ub78c\uc774\uc57c \uc704\uc758 \ud0a4\ub97c \ub20c\ub7ec\uc11c \uc0c8\ub85c\uace0\uce68 \ud55c\ub2e4\uc9c0\ub9cc \uae30\uc874\uc5d0 \ud648\ud398\uc774\uc9c0\ub97c\u2026","rel":"","context":"&quot;\ucef4\ud4e8\ud130&quot;\uc5d0\uc11c","block_context":{"text":"\ucef4\ud4e8\ud130","link":"https:\/\/sarang.inmu.net\/?cat=5"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":658,"url":"https:\/\/sarang.inmu.net\/?p=658","url_meta":{"origin":902,"position":5},"title":"php \ucd08\ub2e8\uc704\ub85c \uc811\uadfc \ub9c9\uae30","author":"sarang","date":"2016\ub144 10\uc6d4 20\uc77c","format":false,"excerpt":"\uc6f9\uc5d0\uc11c \ud3fc\uc744 \ub118\uae38 \ub54c \uac00\ub054 \ub354\ube14\ud074\ub9ad\uc744 \ud558\uac70\ub098 \uc544\ub2c8\uba74 \uc11c\ubc84\uc5d0\uc11c \uc9c0\uc5f0\uc774 \uc0dd\uae30\uac70\ub098 \uc544\ub2c8\uba74 \uc545\uc758\uc801\uc778 \uacf5\uaca9\uc744 \ubc1b\uace0 \uc788\uac70\ub098 \ud560 \ub54c, \uc5d4\uc158\uc744 \ucd08\ub2e8\uc704\ub85c \ub9c9\ub294 \uc5ec\ub7ec \uac00\uc9c0 \ubc29\ubc95\uc774 \uc788\ub2e4. \uc608\ub97c \ub4e4\uc5b4 index.php \uc5d0\uc11c act.php \ub85c \ub85c\uadf8\uc778 \uc815\ubcf4\ub97c \ub118\uae38 \ub54c\ub97c \uac00\uc815\ud558\uc790. \uc544\uc774\ub514\uc640 \ube44\ubc00\ubc88\ud638\ub97c \uc785\ub825\ud558\uace0 \ubc84\ud2bc\uc744 \ub204\ub978\ub2e4. act.php \ub85c \uc811\uadfc\ud558\uc5ec \uacb0\uacfc\ub97c \ub3cc\ub824 \uc8fc\ub294\ub370 3\ucd08\uac00 \uc9c0\ub098\uc57c \uc11c\ubc84\u2026","rel":"","context":"&quot;\ucef4\ud4e8\ud130&quot;\uc5d0\uc11c","block_context":{"text":"\ucef4\ud4e8\ud130","link":"https:\/\/sarang.inmu.net\/?cat=5"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]}],"jetpack_shortlink":"https:\/\/wp.me\/p7qW60-ey","jetpack_likes_enabled":true,"_links":{"self":[{"href":"https:\/\/sarang.inmu.net\/index.php?rest_route=\/wp\/v2\/posts\/902","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/sarang.inmu.net\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/sarang.inmu.net\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/sarang.inmu.net\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/sarang.inmu.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=902"}],"version-history":[{"count":8,"href":"https:\/\/sarang.inmu.net\/index.php?rest_route=\/wp\/v2\/posts\/902\/revisions"}],"predecessor-version":[{"id":910,"href":"https:\/\/sarang.inmu.net\/index.php?rest_route=\/wp\/v2\/posts\/902\/revisions\/910"}],"wp:attachment":[{"href":"https:\/\/sarang.inmu.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=902"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/sarang.inmu.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=902"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/sarang.inmu.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=902"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}