﻿{
    "version": "1.0",
    "provider_name": "Kefir Link \u514b\u83f2\u723e\u5976",
    "provider_url": "https:\/\/kefir.link\/en",
    "author_name": "mslaura",
    "author_url": "https:\/\/kefir.link\/en\/author\/mslaura\/",
    "title": "\u514b\u83f2\u723e\u4e73\u6e05\uff5c500g",
    "type": "rich",
    "width": 600,
    "height": 338,
    "html": "<blockquote class=\"wp-embedded-content\" data-secret=\"qwS8YES6bz\"><a href=\"https:\/\/kefir.link\/en\/product\/%e5%85%8b%e8%8f%b2%e7%88%be%e4%b9%b3%e6%b8%85\/\">\u514b\u83f2\u723e\u4e73\u6e05\uff5c500g<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/kefir.link\/en\/product\/%e5%85%8b%e8%8f%b2%e7%88%be%e4%b9%b3%e6%b8%85\/embed\/#?secret=qwS8YES6bz\" width=\"600\" height=\"338\" title=\"&#8220;\u514b\u83f2\u723e\u4e73\u6e05\uff5c500g&#8221; &#8212; Kefir Link \u514b\u83f2\u723e\u5976\" data-secret=\"qwS8YES6bz\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\" class=\"wp-embedded-content\"><\/iframe><script>\n\/**\n * WordPress inline HTML embed\n *\n * @since 4.4.0\n * @output wp-includes\/js\/wp-embed.js\n *\n * Single line comments should not be used since they will break\n * the script when inlined in get_post_embed_html(), specifically\n * when the comments are not stripped out due to SCRIPT_DEBUG\n * being turned on.\n *\/\n(function ( window, document ) {\n\t'use strict';\n\n\t\/* Abort for ancient browsers. *\/\n\tif ( ! document.querySelector || ! window.addEventListener || typeof URL === 'undefined' ) {\n\t\treturn;\n\t}\n\n\t\/** @namespace wp *\/\n\twindow.wp = window.wp || {};\n\n\t\/* Abort if script was already executed. *\/\n\tif ( !! window.wp.receiveEmbedMessage ) {\n\t\treturn;\n\t}\n\n\t\/**\n\t * Receive embed message.\n\t *\n\t * @param {MessageEvent} e\n\t *\/\n\twindow.wp.receiveEmbedMessage = function( e ) {\n\t\tvar data = e.data;\n\n\t\t\/* Verify shape of message. *\/\n\t\tif (\n\t\t\t! ( data || data.secret || data.message || data.value ) ||\n\t\t\t\/[^a-zA-Z0-9]\/.test( data.secret )\n\t\t) {\n\t\t\treturn;\n\t\t}\n\n\t\tvar iframes = document.querySelectorAll( 'iframe[data-secret=\"' + data.secret + '\"]' ),\n\t\t\tblockquotes = document.querySelectorAll( 'blockquote[data-secret=\"' + data.secret + '\"]' ),\n\t\t\tallowedProtocols = new RegExp( '^https?:$', 'i' ),\n\t\t\ti, source, height, sourceURL, targetURL;\n\n\t\tfor ( i = 0; i < blockquotes.length; i++ ) {\n\t\t\tblockquotes[ i ].style.display = 'none';\n\t\t}\n\n\t\tfor ( i = 0; i < iframes.length; i++ ) {\n\t\t\tsource = iframes[ i ];\n\n\t\t\tif ( e.source !== source.contentWindow ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tsource.removeAttribute( 'style' );\n\n\t\t\tif ( 'height' === data.message ) {\n\t\t\t\t\/* Resize the iframe on request. *\/\n\t\t\t\theight = parseInt( data.value, 10 );\n\t\t\t\tif ( height > 1000 ) {\n\t\t\t\t\theight = 1000;\n\t\t\t\t} else if ( ~~height < 200 ) {\n\t\t\t\t\theight = 200;\n\t\t\t\t}\n\n\t\t\t\tsource.height = height;\n\t\t\t} else if ( 'link' === data.message ) {\n\t\t\t\t\/* Link to a specific URL on request. *\/\n\t\t\t\tsourceURL = new URL( source.getAttribute( 'src' ) );\n\t\t\t\ttargetURL = new URL( data.value );\n\n\t\t\t\tif (\n\t\t\t\t\tallowedProtocols.test( targetURL.protocol ) &&\n\t\t\t\t\ttargetURL.host === sourceURL.host &&\n\t\t\t\t\tdocument.activeElement === source\n\t\t\t\t) {\n\t\t\t\t\twindow.top.location.href = data.value;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n\n\tfunction onLoad() {\n\t\tvar iframes = document.querySelectorAll( 'iframe.wp-embedded-content' ),\n\t\t\ti, source, secret;\n\n\t\tfor ( i = 0; i < iframes.length; i++ ) {\n\t\t\t\/** @var {IframeElement} *\/\n\t\t\tsource = iframes[ i ];\n\n\t\t\tsecret = source.getAttribute( 'data-secret' );\n\t\t\tif ( ! secret ) {\n\t\t\t\t\/* Add secret to iframe *\/\n\t\t\t\tsecret = Math.random().toString( 36 ).substring( 2, 12 );\n\t\t\t\tsource.src += '#?secret=' + secret;\n\t\t\t\tsource.setAttribute( 'data-secret', secret );\n\t\t\t}\n\n\t\t\t\/*\n\t\t\t * Let post embed window know that the parent is ready for receiving the height message, in case the iframe\n\t\t\t * loaded before wp-embed.js was loaded. When the ready message is received by the post embed window, the\n\t\t\t * window will then (re-)send the height message right away.\n\t\t\t *\/\n\t\t\tsource.contentWindow.postMessage( {\n\t\t\t\tmessage: 'ready',\n\t\t\t\tsecret: secret\n\t\t\t}, '*' );\n\t\t}\n\t}\n\n\twindow.addEventListener( 'message', window.wp.receiveEmbedMessage, false );\n\tdocument.addEventListener( 'DOMContentLoaded', onLoad, false );\n})( window, document );\n\/\/# sourceURL=https:\/\/kefir.link\/wp-includes\/js\/wp-embed.js\n<\/script>",
    "thumbnail_url": "https:\/\/kefir.link\/wp-content\/uploads\/2025\/08\/pinkoi-website-main-pic-soap-1.png",
    "thumbnail_width": 1000,
    "thumbnail_height": 1000,
    "description": "\u514b\u83f2\u723e\u4e73\u6e05\u662f\u88fd\u4f5c\u514b\u83f2\u723e\u8d77\u53f8\u6642\u5f9e\u51dd\u4e73\u4e2d\u5206\u96e2\u51fa\u4f86\u7684\u900f\u660e\u6db2\u9ad4\uff0c\u70ba\u767c\u9175\u904e\u7a0b\u7684\u526f\u7522\u54c1\uff0c\u542b\u6709\u8a31\u591a\u76ca\u751f\u83cc\u3001\u86cb\u767d\u8cea\u7b49\u7b49\u71df\u990a\u7d20\u3002 \u56e0\u70ba\u5176\u4e2d\u7684\u73cd\u8cb4\u6210\u5206\uff0c\u514b\u83f2\u723e\u4e73\u6e05\u5728\u897f\u65b9\u88ab\u7a31\u70ba\u6db2\u614b\u9ec3\u91d1(\u00a0liquid gold)\ud83d\udcb0\uff0c\u986f\u793a\u5176\u7121\u6bd4\u7684\u50f9\u503c\u5462\u3002 \u904b\u7528\u65b9\u5f0f\u591a\u5143\uff1a 1\ufe0f\u20e3\u76f4\u63a5\u98f2\u7528\u6216\u52a0\u5165\u6c23\u6ce1\u6c34\u3001\u8702\u871c\u3001\u679c\u6c41\u3001\u679c\u91ac\u5f8c\u8abf\u5473\u98f2\u7528\u3002\u51b0\u6dbc\u89e3\u6e34\u4f60\u7684\u590f\u5929\u3002 2\ufe0f\u20e3\u88fd\u4f5c\u514b\u83f2\u723e\u8607\u6253\u6c34 \u4e00\u7a2e\u542b\u6709\u6c23\u6ce1\u548c\u76ca\u751f\u83cc\u7684\u98f2\u6599\uff0c\u52a0\u5165\u4e00\u4e9b\u6ab8\u6aac\u6c41\uff0c\u8b93\u5b83\u767c\u9175\u5e7e\u500b\u5c0f\u6642\u518d\u98f2\u7528\u3002 3\ufe0f\u20e3\u88fd\u4f5c\u767c\u9175\u852c\u83dc\u8207\u98f2\u6599 \u514b\u83f2\u723e\u4e73\u6e05\u542b\u6709\u8c50\u5bcc\u7684\u6d3b\u6027\u76ca\u83cc\u548c\u9175\u6bcd\uff0c\u53ef\u5e6b\u52a9\u767c\u9175\u5176\u4ed6\u98df\u7269\uff0c\u7528\u4f86\u88fd\u4f5c\u6ce1\u83dc\u3001\u9178\u83dc\u3001\u6ce1\u83dc\u3001\u838e\u838e\u91ac\u90fd\u975e\u5e38\u9069\u5408\u3002\u4ea6\u53ef\u7528\u4f86\u88fd\u4f5c\u767c\u9175\u98f2\u6599\uff0c\u5982\u514b\u74e6\u65af\uff08\u985e\u4f3c\u5eb7\u666e\u8336\uff0c\u6771\u6b50\u7684\u5929\u7136\u78b3\u9178\u98f2\u6599\uff09\u3001rejuvelac\uff08\u56de\u6625\u6c34\uff09 \u548c\u8591\u6c41\u5564\u9152\u3002 4\ufe0f\u20e3\u7528\u4f86\u9183\u88fd\u8089\u985e \u514b\u83f2\u723e\u4e73\u6e05\u53ef\u4ee5\u901a\u904e\u5206\u89e3\u86cb\u767d\u8cea\u548c\u6dfb\u52a0\u9178\u5473\u4f86\u5ae9\u5316\u8089\u985e\uff0c\u8b93\u5b83\u8b8a\u5f97\u67d4\u8edf\uff0c\u7279\u5225\u662f\u96de\u8089\u8207\u8c6c\u8089\u3002 \u4e5f\u53ef\u53e6\u5916\u6dfb\u52a0\u9e7d\u3001\u9999\u6599\u3001\u9999\u8349\u3001\u5927\u849c\u3001\u6d0b\u8525\u548c\u5176\u4ed6\u6210\u5206\u4f86\u88fd\u9020\u7368\u7279\u7684\u9183\u6599\u3002 5\ufe0f\u20e3\u7528\u70ba\u9178\u5976\u3001\u512a\u683c\u6216\u9178\u5976\u6cb9\u5728\u98df\u8b5c\u4e2d\u7684\u66ff\u4ee3\u54c1 \u514b\u83f2\u723e\u4e73\u6e05\u53ef\u70ba\u9eb5\u7cca\u3001\u9b06\u9905\u3001\u86cb\u7cd5\u3001\u9eb5\u5305\u7b49\u70d8\u7119\u98df\u54c1\u6dfb\u52a0\u6c34\u5206\u548c\u9178\u5ea6\u3002 \u9178\u5976\u6cb9\u662f\u8a31\u591a\u897f\u9910\u6599\u7406\u6216\u751c\u9ede\u7684\u5e38\u7528\u6750\u6599\uff0c\u4f46\u5728\u5e02\u9762\u4e0a\u4e0d\u6613\u53d6\u5f97\uff0c\u73fe\u5728\u53ef\u4ee5\u7528\u514b\u83f2\u723e\u4e73\u6e05\u53d6\u4ee3\u56c9\uff0c\u9084\u542b\u6709\u66f4\u591a\u7684\u71df\u990a\u50f9\u503c\u3002 \u514b\u83f2\u723e\u4e73\u6e05\u4e5f\u53ef\u4ee5\u7528\u4f86\u88fd\u4f5c\u5976\u6cb9\u91ac\u3001\u91ac\u6599\u3001\u6c99\u62c9\u91ac\u7b49\u91ac\u6599 6\ufe0f\u20e3\u8b77\u819a\u54c1 \u628a\u4e73\u6e05\u653e\u5728\u5674\u74f6\u4e2d\u5674\u6492\u65bc\u8eab\u4e0a\u8ddf\u81c9\u4e0a\uff0c\u6ecb\u6f64\u808c\u819a\uff0c\u8b93\u808c\u819a\u6062\u5fa9\u751f\u6a5f\u3002 (\u6bcf\u500b\u4eba\u7684\u819a\u8cea\u4e0d\u540c\uff0c\u8acb\u5148\u9032\u884c\u654f\u611f\u6027\u6e2c\u8a66\uff0c\u5728\u4e0d\u592a\u986f\u773c\u7684\u76ae\u819a\u5340\u57df\u5857\u62b9\u5c11\u91cf\u514b\u83f2\u723e\u4e73\u6e05\uff0c\u89c0\u5bdf\u662f\u5426\u6709\u4efb\u4f55\u4e0d\u826f\u53cd\u61c9\uff0c\u5982\u7d05\u816b\u3001\u767c\u7662\u3002\u5982\u679c\u4f60\u6709\u56b4\u91cd\u7684\u76ae\u819a\u554f\u984c\uff0c\u5efa\u8b70\u5148\u54a8\u8a62\u76ae\u819a\u79d1\u91ab\u751f) 7\ufe0f\u20e3\u690d\u7269\u80a5\u6599 \u514b\u83f2\u723e\u4e73\u6e05\u5bcc\u542b\u7926\u7269\u8cea\uff0c\u53ef\u4ee5\u5e6b\u52a9\u690d\u7269\u751f\u9577\uff0c\u5728\u4f7f\u7528\u4e4b\u524d\u9700\u8981\u5c07\u5176\u7a00\u91cb\u3002 \u4e5f\u53ef\u4ee5\u5c07\u5176\u6dfb\u52a0\u5230\u5806\u80a5\u5806\u4e2d\u4ee5\u52a0\u901f\u5206\u89e3\u904e\u7a0b\u4e26\u589e\u52a0\u5fae\u751f\u7269\u6d3b\u6027\u3002 8\ufe0f\u20e3\u5929\u7136\u53bb\u6f2c\u5291\u8207\u6e05\u6f54\u5291 [&hellip;]"
}