{"id":27340,"date":"2024-03-16T08:18:04","date_gmt":"2024-03-16T08:18:04","guid":{"rendered":"https:\/\/www.silicloud.com\/blog\/how-should-the-datetime-field-be-written-into-the-database\/"},"modified":"2024-03-22T10:47:58","modified_gmt":"2024-03-22T10:47:58","slug":"how-should-the-datetime-field-be-written-into-the-database","status":"publish","type":"post","link":"https:\/\/www.silicloud.com\/blog\/how-should-the-datetime-field-be-written-into-the-database\/","title":{"rendered":"How should the datetime field be written into the database?"},"content":{"rendered":"<p>To write the datetime field into the database, you can use the INSERT statement of the database and pass the value of the datetime field as a parameter to the statement.<\/p>\n<p>The specific write operations may vary depending on the different database management systems. Here are examples of some common database management systems:<\/p>\n<ol>\n<li>The MySQL\/MariaDB database.<\/li>\n<\/ol>\n<pre class=\"post-pre\"><code><span class=\"hljs-keyword\">import<\/span> mysql.connector\r\n<span class=\"hljs-keyword\">from<\/span> mysql.connector <span class=\"hljs-keyword\">import<\/span> Error\r\n\r\n<span class=\"hljs-comment\"># \u521b\u5efa\u6570\u636e\u5e93\u8fde\u63a5<\/span>\r\nconn = mysql.connector.connect(\r\n    host=<span class=\"hljs-string\">\"localhost\"<\/span>,\r\n    user=<span class=\"hljs-string\">\"your_username\"<\/span>,\r\n    password=<span class=\"hljs-string\">\"your_password\"<\/span>,\r\n    database=<span class=\"hljs-string\">\"your_database\"<\/span>\r\n)\r\n\r\n<span class=\"hljs-comment\"># \u521b\u5efa\u4e00\u4e2a\u5149\u6807\u5bf9\u8c61<\/span>\r\ncursor = conn.cursor()\r\n\r\n<span class=\"hljs-comment\"># \u63d2\u5165\u4e00\u6761\u8bb0\u5f55\uff0c\u5176\u4e2ddatetime\u5b57\u6bb5\u4f7f\u7528\u53c2\u6570\u5360\u4f4d\u7b26<\/span>\r\nsql = <span class=\"hljs-string\">\"INSERT INTO your_table (datetime_column) VALUES (%s)\"<\/span>\r\ndata = (<span class=\"hljs-string\">\"2022-01-01 12:00:00\"<\/span>,)\r\n\r\n<span class=\"hljs-keyword\">try<\/span>:\r\n    <span class=\"hljs-comment\"># \u6267\u884c\u63d2\u5165\u8bed\u53e5<\/span>\r\n    cursor.execute(sql, data)\r\n\r\n    <span class=\"hljs-comment\"># \u63d0\u4ea4\u4e8b\u52a1<\/span>\r\n    conn.commit()\r\n\r\n    <span class=\"hljs-built_in\">print<\/span>(<span class=\"hljs-string\">\"\u8bb0\u5f55\u63d2\u5165\u6210\u529f\uff01\"<\/span>)\r\n\r\n<span class=\"hljs-keyword\">except<\/span> Error <span class=\"hljs-keyword\">as<\/span> e:\r\n    <span class=\"hljs-built_in\">print<\/span>(<span class=\"hljs-string\">\"\u63d2\u5165\u8bb0\u5f55\u65f6\u53d1\u751f\u9519\u8bef\uff1a\"<\/span>, e)\r\n\r\n<span class=\"hljs-keyword\">finally<\/span>:\r\n    <span class=\"hljs-comment\"># \u5173\u95ed\u5149\u6807\u548c\u6570\u636e\u5e93\u8fde\u63a5<\/span>\r\n    cursor.close()\r\n    conn.close()\r\n<\/code><\/pre>\n<ol>\n<li>PostgreSQL is a powerful open-source relational database management system.<\/li>\n<\/ol>\n<pre class=\"post-pre\"><code><span class=\"hljs-keyword\">import<\/span> psycopg2\r\n<span class=\"hljs-keyword\">from<\/span> psycopg2 <span class=\"hljs-keyword\">import<\/span> Error\r\n\r\n<span class=\"hljs-comment\"># \u521b\u5efa\u6570\u636e\u5e93\u8fde\u63a5<\/span>\r\nconn = psycopg2.connect(\r\n    host=<span class=\"hljs-string\">\"localhost\"<\/span>,\r\n    user=<span class=\"hljs-string\">\"your_username\"<\/span>,\r\n    password=<span class=\"hljs-string\">\"your_password\"<\/span>,\r\n    database=<span class=\"hljs-string\">\"your_database\"<\/span>\r\n)\r\n\r\n<span class=\"hljs-comment\"># \u521b\u5efa\u4e00\u4e2a\u5149\u6807\u5bf9\u8c61<\/span>\r\ncursor = conn.cursor()\r\n\r\n<span class=\"hljs-comment\"># \u63d2\u5165\u4e00\u6761\u8bb0\u5f55\uff0c\u5176\u4e2ddatetime\u5b57\u6bb5\u4f7f\u7528\u53c2\u6570\u5360\u4f4d\u7b26<\/span>\r\nsql = <span class=\"hljs-string\">\"INSERT INTO your_table (datetime_column) VALUES (%s)\"<\/span>\r\ndata = (<span class=\"hljs-string\">\"2022-01-01 12:00:00\"<\/span>,)\r\n\r\n<span class=\"hljs-keyword\">try<\/span>:\r\n    <span class=\"hljs-comment\"># \u6267\u884c\u63d2\u5165\u8bed\u53e5<\/span>\r\n    cursor.execute(sql, data)\r\n\r\n    <span class=\"hljs-comment\"># \u63d0\u4ea4\u4e8b\u52a1<\/span>\r\n    conn.commit()\r\n\r\n    <span class=\"hljs-built_in\">print<\/span>(<span class=\"hljs-string\">\"\u8bb0\u5f55\u63d2\u5165\u6210\u529f\uff01\"<\/span>)\r\n\r\n<span class=\"hljs-keyword\">except<\/span> Error <span class=\"hljs-keyword\">as<\/span> e:\r\n    <span class=\"hljs-built_in\">print<\/span>(<span class=\"hljs-string\">\"\u63d2\u5165\u8bb0\u5f55\u65f6\u53d1\u751f\u9519\u8bef\uff1a\"<\/span>, e)\r\n\r\n<span class=\"hljs-keyword\">finally<\/span>:\r\n    <span class=\"hljs-comment\"># \u5173\u95ed\u5149\u6807\u548c\u6570\u636e\u5e93\u8fde\u63a5<\/span>\r\n    cursor.close()\r\n    conn.close()\r\n<\/code><\/pre>\n<ol>\n<li>SQLite is a software library that provides a relational database management system.<\/li>\n<\/ol>\n<pre class=\"post-pre\"><code><span class=\"hljs-keyword\">import<\/span> sqlite3\r\n<span class=\"hljs-keyword\">from<\/span> sqlite3 <span class=\"hljs-keyword\">import<\/span> Error\r\n\r\n<span class=\"hljs-comment\"># \u521b\u5efa\u6570\u636e\u5e93\u8fde\u63a5<\/span>\r\nconn = sqlite3.connect(<span class=\"hljs-string\">\"your_database.db\"<\/span>)\r\n\r\n<span class=\"hljs-comment\"># \u521b\u5efa\u4e00\u4e2a\u5149\u6807\u5bf9\u8c61<\/span>\r\ncursor = conn.cursor()\r\n\r\n<span class=\"hljs-comment\"># \u63d2\u5165\u4e00\u6761\u8bb0\u5f55\uff0c\u5176\u4e2ddatetime\u5b57\u6bb5\u4f7f\u7528\u53c2\u6570\u5360\u4f4d\u7b26<\/span>\r\nsql = <span class=\"hljs-string\">\"INSERT INTO your_table (datetime_column) VALUES (?)\"<\/span>\r\ndata = (<span class=\"hljs-string\">\"2022-01-01 12:00:00\"<\/span>,)\r\n\r\n<span class=\"hljs-keyword\">try<\/span>:\r\n    <span class=\"hljs-comment\"># \u6267\u884c\u63d2\u5165\u8bed\u53e5<\/span>\r\n    cursor.execute(sql, data)\r\n\r\n    <span class=\"hljs-comment\"># \u63d0\u4ea4\u4e8b\u52a1<\/span>\r\n    conn.commit()\r\n\r\n    <span class=\"hljs-built_in\">print<\/span>(<span class=\"hljs-string\">\"\u8bb0\u5f55\u63d2\u5165\u6210\u529f\uff01\"<\/span>)\r\n\r\n<span class=\"hljs-keyword\">except<\/span> Error <span class=\"hljs-keyword\">as<\/span> e:\r\n    <span class=\"hljs-built_in\">print<\/span>(<span class=\"hljs-string\">\"\u63d2\u5165\u8bb0\u5f55\u65f6\u53d1\u751f\u9519\u8bef\uff1a\"<\/span>, e)\r\n\r\n<span class=\"hljs-keyword\">finally<\/span>:\r\n    <span class=\"hljs-comment\"># \u5173\u95ed\u5149\u6807\u548c\u6570\u636e\u5e93\u8fde\u63a5<\/span>\r\n    cursor.close()\r\n    conn.close()\r\n<\/code><\/pre>\n<p>Please choose the appropriate code example based on the database management system you are using, and replace the parameters (such as username, password, database name, table name, field names) with your actual values.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>To write the datetime field into the database, you can use the INSERT statement of the database and pass the value of the datetime field as a parameter to the statement. The specific write operations may vary depending on the different database management systems. Here are examples of some common database management systems: The MySQL\/MariaDB [&hellip;]<\/p>\n","protected":false},"author":13,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_import_markdown_pro_load_document_selector":0,"_import_markdown_pro_submit_text_textarea":"","footnotes":""},"categories":[1],"tags":[],"class_list":["post-27340","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v21.5 (Yoast SEO v21.5) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How should the datetime field be written into the database? - Blog - Silicon Cloud<\/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.silicloud.com\/blog\/how-should-the-datetime-field-be-written-into-the-database\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How should the datetime field be written into the database?\" \/>\n<meta property=\"og:description\" content=\"To write the datetime field into the database, you can use the INSERT statement of the database and pass the value of the datetime field as a parameter to the statement. The specific write operations may vary depending on the different database management systems. Here are examples of some common database management systems: The MySQL\/MariaDB [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.silicloud.com\/blog\/how-should-the-datetime-field-be-written-into-the-database\/\" \/>\n<meta property=\"og:site_name\" content=\"Blog - Silicon Cloud\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/SiliCloudGlobal\/\" \/>\n<meta property=\"article:published_time\" content=\"2024-03-16T08:18:04+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-03-22T10:47:58+00:00\" \/>\n<meta name=\"author\" content=\"Isabella Edwards\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@SiliCloudGlobal\" \/>\n<meta name=\"twitter:site\" content=\"@SiliCloudGlobal\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Isabella Edwards\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/how-should-the-datetime-field-be-written-into-the-database\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/how-should-the-datetime-field-be-written-into-the-database\/\"},\"author\":{\"name\":\"Isabella Edwards\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/#\/schema\/person\/5579144e23c225c8188167f3e3f888dd\"},\"headline\":\"How should the datetime field be written into the database?\",\"datePublished\":\"2024-03-16T08:18:04+00:00\",\"dateModified\":\"2024-03-22T10:47:58+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/how-should-the-datetime-field-be-written-into-the-database\/\"},\"wordCount\":121,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/#organization\"},\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/how-should-the-datetime-field-be-written-into-the-database\/\",\"url\":\"https:\/\/www.silicloud.com\/blog\/how-should-the-datetime-field-be-written-into-the-database\/\",\"name\":\"How should the datetime field be written into the database? - Blog - Silicon Cloud\",\"isPartOf\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/#website\"},\"datePublished\":\"2024-03-16T08:18:04+00:00\",\"dateModified\":\"2024-03-22T10:47:58+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/how-should-the-datetime-field-be-written-into-the-database\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.silicloud.com\/blog\/how-should-the-datetime-field-be-written-into-the-database\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/how-should-the-datetime-field-be-written-into-the-database\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.silicloud.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How should the datetime field be written into the database?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/#website\",\"url\":\"https:\/\/www.silicloud.com\/blog\/\",\"name\":\"Silicon Cloud Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/#organization\"},\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/#organization\",\"name\":\"Silicon Cloud Blog\",\"url\":\"https:\/\/www.silicloud.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.silicloud.com\/blog\/wp-content\/uploads\/2023\/11\/EN-SILICON-Full.png\",\"contentUrl\":\"https:\/\/www.silicloud.com\/blog\/wp-content\/uploads\/2023\/11\/EN-SILICON-Full.png\",\"width\":1024,\"height\":1024,\"caption\":\"Silicon Cloud Blog\"},\"image\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/SiliCloudGlobal\/\",\"https:\/\/twitter.com\/SiliCloudGlobal\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/#\/schema\/person\/5579144e23c225c8188167f3e3f888dd\",\"name\":\"Isabella Edwards\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/d4d4dec47f553ac7961d9fa4cc9bdcdcf5b7ce5106594330b6d25c5694fdbaec?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/d4d4dec47f553ac7961d9fa4cc9bdcdcf5b7ce5106594330b6d25c5694fdbaec?s=96&d=mm&r=g\",\"caption\":\"Isabella Edwards\"},\"url\":\"https:\/\/www.silicloud.com\/blog\/author\/isabellaedwards\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How should the datetime field be written into the database? - Blog - Silicon Cloud","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.silicloud.com\/blog\/how-should-the-datetime-field-be-written-into-the-database\/","og_locale":"en_US","og_type":"article","og_title":"How should the datetime field be written into the database?","og_description":"To write the datetime field into the database, you can use the INSERT statement of the database and pass the value of the datetime field as a parameter to the statement. The specific write operations may vary depending on the different database management systems. Here are examples of some common database management systems: The MySQL\/MariaDB [&hellip;]","og_url":"https:\/\/www.silicloud.com\/blog\/how-should-the-datetime-field-be-written-into-the-database\/","og_site_name":"Blog - Silicon Cloud","article_publisher":"https:\/\/www.facebook.com\/SiliCloudGlobal\/","article_published_time":"2024-03-16T08:18:04+00:00","article_modified_time":"2024-03-22T10:47:58+00:00","author":"Isabella Edwards","twitter_card":"summary_large_image","twitter_creator":"@SiliCloudGlobal","twitter_site":"@SiliCloudGlobal","twitter_misc":{"Written by":"Isabella Edwards","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.silicloud.com\/blog\/how-should-the-datetime-field-be-written-into-the-database\/#article","isPartOf":{"@id":"https:\/\/www.silicloud.com\/blog\/how-should-the-datetime-field-be-written-into-the-database\/"},"author":{"name":"Isabella Edwards","@id":"https:\/\/www.silicloud.com\/blog\/#\/schema\/person\/5579144e23c225c8188167f3e3f888dd"},"headline":"How should the datetime field be written into the database?","datePublished":"2024-03-16T08:18:04+00:00","dateModified":"2024-03-22T10:47:58+00:00","mainEntityOfPage":{"@id":"https:\/\/www.silicloud.com\/blog\/how-should-the-datetime-field-be-written-into-the-database\/"},"wordCount":121,"commentCount":0,"publisher":{"@id":"https:\/\/www.silicloud.com\/blog\/#organization"},"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.silicloud.com\/blog\/how-should-the-datetime-field-be-written-into-the-database\/","url":"https:\/\/www.silicloud.com\/blog\/how-should-the-datetime-field-be-written-into-the-database\/","name":"How should the datetime field be written into the database? - Blog - Silicon Cloud","isPartOf":{"@id":"https:\/\/www.silicloud.com\/blog\/#website"},"datePublished":"2024-03-16T08:18:04+00:00","dateModified":"2024-03-22T10:47:58+00:00","breadcrumb":{"@id":"https:\/\/www.silicloud.com\/blog\/how-should-the-datetime-field-be-written-into-the-database\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.silicloud.com\/blog\/how-should-the-datetime-field-be-written-into-the-database\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.silicloud.com\/blog\/how-should-the-datetime-field-be-written-into-the-database\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.silicloud.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How should the datetime field be written into the database?"}]},{"@type":"WebSite","@id":"https:\/\/www.silicloud.com\/blog\/#website","url":"https:\/\/www.silicloud.com\/blog\/","name":"Silicon Cloud Blog","description":"","publisher":{"@id":"https:\/\/www.silicloud.com\/blog\/#organization"},"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.silicloud.com\/blog\/#organization","name":"Silicon Cloud Blog","url":"https:\/\/www.silicloud.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.silicloud.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.silicloud.com\/blog\/wp-content\/uploads\/2023\/11\/EN-SILICON-Full.png","contentUrl":"https:\/\/www.silicloud.com\/blog\/wp-content\/uploads\/2023\/11\/EN-SILICON-Full.png","width":1024,"height":1024,"caption":"Silicon Cloud Blog"},"image":{"@id":"https:\/\/www.silicloud.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/SiliCloudGlobal\/","https:\/\/twitter.com\/SiliCloudGlobal"]},{"@type":"Person","@id":"https:\/\/www.silicloud.com\/blog\/#\/schema\/person\/5579144e23c225c8188167f3e3f888dd","name":"Isabella Edwards","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.silicloud.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/d4d4dec47f553ac7961d9fa4cc9bdcdcf5b7ce5106594330b6d25c5694fdbaec?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d4d4dec47f553ac7961d9fa4cc9bdcdcf5b7ce5106594330b6d25c5694fdbaec?s=96&d=mm&r=g","caption":"Isabella Edwards"},"url":"https:\/\/www.silicloud.com\/blog\/author\/isabellaedwards\/"}]}},"_links":{"self":[{"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/posts\/27340","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/users\/13"}],"replies":[{"embeddable":true,"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/comments?post=27340"}],"version-history":[{"count":1,"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/posts\/27340\/revisions"}],"predecessor-version":[{"id":61565,"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/posts\/27340\/revisions\/61565"}],"wp:attachment":[{"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/media?parent=27340"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/categories?post=27340"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/tags?post=27340"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}