{"version":"1.0","provider_name":"Awaken the World","provider_url":"https:\/\/awakentheworld.com\/cn","author_name":"Franklin","author_url":"https:\/\/awakentheworld.com\/cn\/author\/fweng\/","title":"#3 \u8ba9\u547c\u5438\u5f15\u5bfc\u4f60\uff0c\u95ee\u5728\u89c2\u5bdf\u7684\u662f\u8c01\uff1f - Awaken the World","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"LgACEI5ZfP\"><a href=\"https:\/\/awakentheworld.com\/cn\/meditation\/cn-med-guide-3\/\">#3 \u8ba9\u547c\u5438\u5f15\u5bfc\u4f60\uff0c\u95ee\u5728\u89c2\u5bdf\u7684\u662f\u8c01\uff1f<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/awakentheworld.com\/cn\/meditation\/cn-med-guide-3\/embed\/#?secret=LgACEI5ZfP\" width=\"600\" height=\"338\" title=\"&#8220;#3 \u8ba9\u547c\u5438\u5f15\u5bfc\u4f60\uff0c\u95ee\u5728\u89c2\u5bdf\u7684\u662f\u8c01\uff1f&#8221; &#8212; Awaken the World\" data-secret=\"LgACEI5ZfP\" 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:\/\/awakentheworld.com\/cn\/wp-includes\/js\/wp-embed.js\n<\/script>\n","thumbnail_url":"https:\/\/awakentheworld.com\/cn\/wp-content\/uploads\/sites\/16\/2020\/08\/The-Pathless-Path-3-Let-the-Breath-Take-You-Find-Out-Who-is-Observing-lg.jpg","thumbnail_width":1920,"thumbnail_height":1080,"description":"#3 \u8ba9\u547c\u5438\u5f15\u5bfc\u4f60\uff0c\u95ee\u5728\u89c2\u5bdf\u7684\u662f\u8c01\uff1f \u9996\u5148\u627e\u5230\u4f60\u89c9\u5f97\u8212\u9002\u7684\u59ff\u52bf\uff0c\u7136\u540e\u4fdd\u6301\u4e0d\u52a8\u4f5c\u3002\u89c2\u5bdf\u9f3b\u5b50\u5185\u7684\u611f\u89c9\uff0c\u770b\u770b\u4f60\u5185\u5728\u7684\u9759\u6b62\u7a0b\u5ea6\u3002\u653e\u5f00\u4e00\u5207\u60f3\u63a7\u5236\u7684\u4f01\u56fe\u3002\u8ba9\u8eab\u4f53\u8fdb\u884c\u4e0b\u4e00\u6b21\u547c\u5438\u3002\u5141\u8bb8\u81ea\u5df1\u547c\u5438\u3002\u9f3b\u5b50\u5185\u7684\u611f\u89c9\u548c\u73b0\u8c61\u4e0d\u65ad\u5728\u53d8\u5316\uff0c\u4f46\u6709\u4e00\u4e9b\u4e1c\u897f\u6ca1\u6709\u6539\u53d8\uff0c\u6709\u4e00\u4e9b\u4e1c\u897f\u77e5\u9053\u4ec0\u4e48\u5728\u6539\u53d8\u3002\u8c01\u6216\u4ec0\u4e48\u5728\u89c2\u5bdf\u547c\u5438\uff1f\u89c9\u77e5\u662f\u8c01\u6216\u4ec0\u4e48\u5728\u89c2\u5bdf\u547c\u5438\u3002\u4fdd\u6301\u5f53\u4e0b\uff0c\u5bf9\u4efb\u4f55\u73b0\u8c61\u7684\u751f\u706d\u4fdd\u6301\u5e73\u5e38\u5fc3\u3002\u610f\u8bc6\u6ca1\u6709\u504f\u597d\uff0c\u5b83\u53ea\u662f\u53bb\u610f\u8bc6\u800c\u5df2\u3002\u5f53\u4f60\u6709\u504f\u597d\uff0c\u53bb\u5224\u65ad\u4e00\u4e2a\u504f\u597d\u662f\u597d\u662f\u574f\uff0c\u90a3\u53ea\u662f\u4e00\u4e2a\u5ff5\u5934\uff0c\u4e00\u4e2a\u5fc3\u7684\u6ce2\u52a8\u3002\u5f53\u4f60\u5bf9\u8fd9\u79cd\u504f\u597d\u505a\u51fa\u53cd\u5e94\u65f6\uff0c\u4f60\u5c31\u4f1a\u5c06\u80fd\u91cf\u6ce8\u5165\u90a3\u79cd\u6a21\u5f0f\uff0c\u5e76\u5f3a\u5316\u90a3\u79cd\u6a21\u5f0f\u3002\u5fc3\u5e73\u6c14\u548c\u3002\u5e73\u5e38\u5fc3\u610f\u5473\u7740\u4f60\u6ca1\u6709\u504f\u597d\u3002\u4f60\u4f5c\u4e3a\u89c9\u77e5\uff0c\u4fdd\u6301\u5e73\u9759\uff0c\u610f\u8bc6\u5230\u90a3\u4e2a\u5fc3\u667a\u5176\u5b9e\u4e0d\u662f\u4f60\u3002\u4e0d\u8981\u8bd5\u56fe\u6446\u8131\u4e0d\u9002\uff0c\u6216\u5bf9\u4e0d\u6109\u5feb\u7684\u611f\u89c9\u505a\u51fa\u53cd\u5e94\u3002\u540c\u6837\uff0c\u5982\u679c\u6109\u60a6\u7684\u611f\u53d7\u751f\u8d77\uff0c\u4e5f\u4e0d\u8981\u6267\u7740\u3002\u6109\u60a6\u7684\u611f\u53d7\u751f\u8d77\u65f6\uff0c\u5982\u679c\u4f60\u5f00\u59cb\u6e34\u671b\u6216\u8bd5\u56fe\u6293\u4f4f\u8fd9\u4e9b\u611f\u53d7\uff0c\u4f60\u53ef\u80fd\u4f1a\u5931\u53bb\u5e73\u5e38\u5fc3\u3002\u5f53\u4f60\u89c2\u5bdf\u547c\u5438\u65f6\uff0c\u627e\u51fa\u8c01\u6216\u4ec0\u4e48\u5728\u89c2\u5bdf\uff0c\u8c01\u6216\u4ec0\u4e48\u5728\u89c9\u77e5\u3002\u575a\u6301\u63a2\u8be2\uff0c\u9488\u5bf9\u6027\u5730\uff0c\u4ee5\u4e00\u79cd\u4e0d\u95f4\u65ad\u7684\u3001\u8fde\u7eed\u7684\u65b9\u5f0f\u63a2\u8be2\u3002\u5c06\u5fc3\u667a\u7684\u6ce8\u610f\u529b\u5b8c\u5168\u96c6\u4e2d\u5728\u547c\u5438\u4e0a\uff0c\u800c\u4f60\u53ea\u662f\u5728\u89c9\u77e5\u3002\u5982\u679c\u5fc3\u6b63\u5728\u4ea7\u751f\u60f3\u6cd5\uff0c\u5982\u679c\u8eab\u4f53\u53d1\u751f\u4e86\u5176\u4ed6\u611f\u89c9\uff0c\u4fdd\u6301\u5e73\u5e38\u5fc3\uff0c\u4fdd\u6301\u89c2\u5bdf\u547c\u5438\u3002\u4e0d\u8981\u88ab\u5176\u4ed6\u7684\u60f3\u6cd5\u548c\u611f\u89c9\u6240\u5438\u5f15\uff0c\u4e0d\u8981\u88ab\u5b83\u4eec\u8ff7\u4f4f\uff0c\u4f46\u4e5f\u4e0d\u8981\u628a\u5b83\u4eec\u63a8\u5f00\u3002\u4e13\u6ce8\u4fdd\u6301\u5355\u7eaf\u7684\u547c\u5438\uff0c\u4e0d\u8981\u62d8\u6ce5\u4e8e\u5b83\uff1b\u8981\u653e\u677e\uff0c\u4f46\u4e5f\u4e0d\u8981\u592a\u653e\u677e\u4ee5\u81f3\u4e8e\u53d8\u5f97\u660f\u660f\u6c89\u6c89\u3002\u4fdd\u6301\u8b66\u89c9\uff0c\u4e0d\u53bb\u63a7\u5236\u4e00\u5207\uff0c\u4fdd\u6301\u575a\u5b9a\u548c\u8010\u5fc3\u3002\u4fdd\u6301\u5728\u5f53\u4e0b\u73b0\u51b5\u3002\u63a5\u53d7\u5728\u8eab\u5fc3\u4e2d\u751f\u8d77\u7684\u4e00\u5207\u3002\u5bf9\u4f60\u7684\u5fc3\u667a\u548c\u8eab\u4f53\u4ea7\u751f\u5185\u5728\u7684\u62b5\u6297\u662f\u6ca1\u6709\u610f\u4e49\u7684\uff0c\u4e0e\u81ea\u5df1\u4f5c\u6597\u4e89\u662f\u6ca1\u6709\u610f\u4e49\u7684\u3002\u653e\u5f00\u4f60\u7684\u63a7\u5236\uff0c\u4e0d\u8981\u8bd5\u56fe\u8ba9\u4efb\u4f55\u4e8b\u60c5\u53d1\u751f\u3002\u8ba9\u81ea\u5df1\u878d\u5165\u547c\u5438\u3002\u653e\u5f00\u81ea\u5df1\u3002\u4e0e\u547c\u5438\u5982\u6b64\u4eb2\u5bc6\uff0c\u8ba9\u81ea\u5df1\u878d\u5165\u5176\u4e2d\u3002\u6ce8\u610f\u4e0d\u52a8\u3001\u4e0d\u53d8\u3001\u6ca1\u6709\u4f4d\u7f6e\u3001\u6ca1\u6709\u54c1\u8d28\u7684\u89c9\u77e5\u3002\u8c01\u5728\u90a3\u5bc2\u9759\u3001\u90a3\u7a7a\u865a\u4e2d\u3001\u65e0\u5904\u4e0d\u5728\u3001\u65e0\u5904\u53ef\u5bfb\u3001\u8d85\u8d8a\u5fc3\u667a\u548c\u611f\u5b98\u3002\u653e\u4e0b\u60f3\u505a\u4ec0\u4e48\u7684\u60f3\u6cd5\u3002\u4fdd\u6301\u5b89\u9759\u5e76\u77e5\u9053\uff0c\u610f\u8bc6\u53ef\u4ee5\u81ea\u5df1\u8fa8\u8bc6\u3002\u5bc2\u9759\u53ef\u4ee5\u9192\u6765\u3002\u81e3\u670d\u4e8e\u6c89\u9ed8\u3001\u9759\u6b62\uff0c\u6ca1\u6709\u53cd\u5e94\uff0c\u6ca1\u6709\u504f\u597d\uff0c\u6ca1\u6709\u8ba4\u540c\u601d\u60f3\u6216\u63a8\u5f00\u601d\u60f3\u3002\u50cf\u8721\u70db\u71c3\u70e7\u81ea\u5df1\u3002\u653e\u5f00\u81ea\u5df1\u3002\u653e\u5f00\u81ea\u5df1\u3002\u653e\u5f00\u81ea\u5df1\u3002"}