{"version":"1.0","provider_name":"Awaken the World","provider_url":"https:\/\/awakentheworld.com\/cn","author_name":"alitardo","author_url":"https:\/\/awakentheworld.com\/cn\/author\/alitardo\/","title":"\u6050\u60e7\uff0c\u6700\u5371\u9669\u7684\u4f20\u67d3\u75c5","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"im7XyuNcf3\"><a href=\"https:\/\/awakentheworld.com\/cn\/transcript\/zui-weixin-de-gnrn-yuan\/\">\u6050\u60e7\uff0c\u6700\u5371\u9669\u7684\u4f20\u67d3\u75c5<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/awakentheworld.com\/cn\/transcript\/zui-weixin-de-gnrn-yuan\/embed\/#?secret=im7XyuNcf3\" width=\"600\" height=\"338\" title=\"&#8220;\u6050\u60e7\uff0c\u6700\u5371\u9669\u7684\u4f20\u67d3\u75c5&#8221; &#8212; Awaken the World\" data-secret=\"im7XyuNcf3\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\" class=\"wp-embedded-content\"><\/iframe><script type=\"text\/javascript\">\n\/* <![CDATA[ *\/\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\/* ]]> *\/\n<\/script>\n","thumbnail_url":"https:\/\/awakentheworld.com\/cn\/wp-content\/uploads\/sites\/16\/2020\/06\/Fear-Most-Dangerous-Contagion.jpg","thumbnail_width":568,"thumbnail_height":568,"description":"\u4e00\u79cd\u4f20\u67d3\u75c5\u6b63\u5728\u4e16\u754c\u5404\u5730\u8513\u5ef6\uff0c\u5b83\u4f20\u64ad\u7684\u901f\u5ea6\u662f\u4eba\u7c7b\u5386\u53f2\u4e0a\u524d\u6240\u672a\u6709\u7684\u3002\u6211\u4e0d\u662f\u5728\u8bf4\u4e00\u79cd\u7269\u7406\u6027\u7684\u75c5\u6bd2\uff0c\u6211\u8bf4\u7684\u662f\u4e00\u79cd\u66f4\u5f3a\u5927\u7684\u4f20\u67d3\u75c5\uff0c\u8fd9\u79cd\u4f20\u67d3\u75c5\u5c31\u662f\u6050\u60e7\u3002 \u6050\u60e7\u53ef\u4ee5\u5e2e\u52a9\u6211\u4eec\u5728\u8feb\u5728\u7709\u776b\u7684\u5a01\u80c1\u4e2d\u751f\u5b58\u4e0b\u6765\uff0c\u4f46\u5f53\u5b83\u50cf\u6162\u6027\u75c5\u4e00\u6837\u603b\u662f\u5f98\u5f8a\u4e8e\u5bf9\u672a\u6765\u7ed3\u679c\u7684\u671f\u5f85\u65f6\uff0c\u5b83\u5c31\u5931\u53bb\u4e86\u4efb\u4f55\u5b9e\u9645\u7684\u597d\u5904\uff0c\u53ea\u4f1a\u9020\u6210\u4e0d\u5fc5\u8981\u7684\u75db\u82e6\u3002\u5f53\u6050\u60e7\u8ba9\u6211\u4eec\u5904\u4e8e\u4e0d\u65ad\u7684\u4e89\u6597\u3001\u9003\u8dd1\u6216\u5446\u6ede\u53cd\u5e94\u4e2d\uff0c\u6fc0\u7d20\u548c\u538b\u529b\u5316\u5b66\u7269\u8d28\u91ca\u653e\u51fa\u6765\uff0c\u6700\u7ec8\u5bfc\u81f4\u771f\u6b63\u7684\u75be\u75c5\uff0c\u8fd9\u65f6\u6050\u60e7\u5c31\u786e\u5b9e\u662f\u4e2a\u95ee\u9898\u3002 \u90a3\u4e48\u4ec0\u4e48\u662f\u6050\u60e7\u7684\u6cbb\u7597\u65b9\u6cd5\u5462\uff1f\u6bd4\u5982\u51a5\u60f3\u548c\u81ea\u6211\u63a2\u7a76\u8fd9\u6837\u7684\u7ec3\u4e60\uff0c\u53ef\u4ee5\u51cf\u5f31\u6211\u4eec\u81ea\u8eab\u7684\u8eab\u4efd\u6807\u8bc6\uff0c\u5b83\u8fde\u5e26\u7740\u65e0\u610f\u8bc6\u7684\u6e34\u671b\u548c\u538c\u6076\uff0c\u800c\u8fd9\u6b63\u662f\u75db\u82e6\u7684\u6839\u6e90\u3002\u7985\u5b97\u6709\u53e5\u8c1a\u8bed\uff1a\u300c\u82e6\u96be\u65e0\u53ef\u907f\u514d\uff0c\u75db\u82e6\u5e76\u975e\u5fc5\u7136\u300d\u3002\u751f\u6d3b\u6ce8\u5b9a\u4f1a\u5e26\u6765\u82e6\u96be\uff0c\u800c\u6211\u4eec\u591a\u5927\u7a0b\u5ea6\u5730\u611f\u53d7\u5230\u75db\u82e6\u76f4\u63a5\u53d6\u51b3\u4e8e\u6211\u4eec\u591a\u5927\u7a0b\u5ea6\u5730\u5bf9\u6297\u5f53\u4e0b\u7684\u4f53\u9a8c\u3002 \u4f7f\u7528\u6b63\u5ff5\u51a5\u60f3\u6280\u672f\u6211\u4eec\u53ef\u4ee5\u7ec3\u4e60\u5c06\u6ce8\u610f\u529b\u4ece\u7eb7\u7eb7\u601d\u7eea\u8f6c\u79fb\u5230\u5f53\u4e0b\u7684\u6b63\u5728\u53d1\u751f\u3002\u51a5\u60f3\u4e5f\u57f9\u517b\u6211\u4eec\u63a5\u53d7\u81ea\u5df1\u7684\u4f53\u9a8c\u7684\u80fd\u529b\uff0c\u54ea\u6015\u662f\u4e0d\u6109\u5feb\u7684\u4f53\u9a8c\u3002\u6211\u4eec\u53ef\u4ee5\u901a\u8fc7\u7b80\u5355\u7684\u6280\u672f\u6765\u505a\u5230\u8fd9\u6837\uff0c\u6bd4\u5982\uff0c\u5c06\u6211\u4eec\u7684\u4e13\u6ce8\u529b\u5f15\u5230\u6050\u60e7\u5728\u8eab\u4f53\u4e2d\u4ea7\u751f\u7684\u5b9e\u9645\u7684\u751f\u7406\u611f\u89c9\u3002\u4fa6\u6d4b\u6b63\u5728\u4ea7\u751f\u548c\u6d88\u5931\u7684\u611f\u89c9\uff0c\u6050\u60e7\u5728\u8eab\u4f53\u91cc\u7684\u611f\u89c9\u5230\u5e95\u50cf\u4ec0\u4e48\uff1f\u4e5f\u8bb8\u662f\u8179\u90e8\u7684\u4e0b\u5760\u611f\uff0c\u547c\u5438\u6536\u7f29\uff0c\u624b\u5fc3\u5192\u6c57\uff0c\u6216\u592a\u9633\u795e\u7ecf\u4e1b\u7684\u538b\u529b\u4e0e\u523a\u75db\u3002 \u51a5\u60f3\u4e0d\u662f\u4e00\u4e2a\u7b80\u6613\u7597\u6cd5\u6216\u901f\u6548\u5bf9\u7b56\uff0c\u4f46\u662f\u901a\u8fc7\u6295\u5165\u8fd9\u4e2a\u6216\u5176\u5b83\u5e2e\u52a9\u6211\u4eec\u5b8c\u5168\u5f00\u653e\u5e76\u4e0e\u4f53\u9a8c\u5171\u5b58\u7684\u7ec3\u4e60\uff0c\u6211\u4eec\u53ef\u4ee5\u4ece\u6050\u60e7\u4e2d\u4eab\u53d7\u5230\u81ea\u7531\uff0c\u5373\u4f7f\u662f\u9762\u4e34\u7740\u751f\u6d3b\u4e2d\u6700\u5927\u7684\u6311\u6218\u3002"}