{"version":"1.0","provider_name":"Micro Connect","provider_url":"https:\/\/microconnect.com\/zh-hans\/","title":"\u6ef4\u704c\u901a\u5f20\u9ad8\u6ce2 | \u76f8\u4fe1\u5e02\u573a\u7684\u529b\u91cf\uff0c\u4e13\u6ce8\u4ea4\u6613\u6240\u8fd0\u8425 - Micro Connect","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"T0s9RTaaiR\"><a href=\"https:\/\/microconnect.com\/zh-hans\/media\/garys-speech-on-map\/\">\u6ef4\u704c\u901a\u5f20\u9ad8\u6ce2 | \u76f8\u4fe1\u5e02\u573a\u7684\u529b\u91cf\uff0c\u4e13\u6ce8\u4ea4\u6613\u6240\u8fd0\u8425<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/microconnect.com\/zh-hans\/media\/garys-speech-on-map\/embed\/#?secret=T0s9RTaaiR\" width=\"600\" height=\"338\" title=\"\u300a \u6ef4\u704c\u901a\u5f20\u9ad8\u6ce2 | \u76f8\u4fe1\u5e02\u573a\u7684\u529b\u91cf\uff0c\u4e13\u6ce8\u4ea4\u6613\u6240\u8fd0\u8425 \u300b\u2014Micro Connect\" data-secret=\"T0s9RTaaiR\" 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\n\/* ]]> *\/\n<\/script>\n","thumbnail_url":"https:\/\/microconnect.com\/wp-content\/uploads\/2024\/01\/NZ8_8526-1024x634.jpg","thumbnail_width":1024,"thumbnail_height":634,"description":"1\u670816\u65e5\uff0c\u6ef4\u704c\u901a\u53d1\u5e03\u300a\u6ef4\u704c\u901a\u6fb3\u4ea4\u6240\u901a\u7528\u6807\u51c6\u300b\uff08MAP\uff09\uff0c\u9996\u521b\u5c0f\u5fae\u4f01\u4e1a\u6295\u878d\u8d44\u5e02\u573a\u6807\u51c6\uff0c\u6807\u5fd7\u7740\u6ef4\u704c\u901a\u6fb3\u4ea4\u6240\u4ece\u201c\u7b2c\u4e00\u9636\u6bb5\u201d\u575a\u5b9a\u3001\u5168\u9762\u5730\u8de8\u5165\u4e86\u7b2c\u4e8c\u9636\u6bb5\uff0c\u5145\u5206\u91ca\u653e\u5e02\u573a\u529b\u91cf\u3002\u5728\u201c\u7b2c\u4e00\u9636\u6bb5\u201d\uff0c\u56e0\u4e3a\u8e0f\u5165\u7684\u662f\u5168\u65b0\u9886\u57df\uff0c\u6ef4\u704c\u901a\u53ea\u80fd\u901a\u8fc7\u201c\u89d2\u8272\u626e\u6f14\u201d\u7684\u65b9\u5f0f\uff0c\u5c1d\u8bd5\u5f00\u62d3\u8fd9\u4e00\u5168\u65b0\u5e02\u573a\u3002\u6ef4\u704c\u901a\u6210\u7acb\u201c\u6ef4\u704c\u901a\u5f15\u9886\u57fa\u91d1\u201d\u626e\u6f14\u6295\u8d44\u8005\uff1b\u6210\u7acb\u5e02\u573a\u62d3\u5c55\u56e2\u961f\uff0c\u5bfb\u627e\u548c\u7b5b\u9009\u9700\u8981\u878d\u8d44\u7684\u5c0f\u5fae\u4f01\u4e1a\uff1b\u6210\u7acb\u4ea4\u6613\u6240\u56e2\u961f\uff0c\u7b79\u5efa\u8bbe\u7acb\u5e76\u8425\u8fd0\u4ea4\u6613\u6240\u3002\u800c\u8fdb\u5165\u201c\u7b2c\u4e8c\u9636\u6bb5\u201d\uff0c\u6ef4\u704c\u901a\u5c06\u8fc7\u6e21\u5230\u4e13\u6ce8\u4ea4\u6613\u6240\u8425\u8fd0\uff0c\u8ba9\u4e0d\u540c\u7b56\u7565\u7684\u4e13\u4e1a\u673a\u6784\u6295\u8d44\u8005\uff0c\u81ea\u4e3b\u8fdb\u884c\u6295\u8d44\u5224\u65ad\uff1b\u8ba9\u4e0d\u540c\u7684\u5c0f\u5fae\u4f01\u4e1a\uff0c\u81ea\u884c\u51b3\u5b9a\u5e0c\u671b\u878d\u8d44\u7684\u91d1\u989d\u3001\u6210\u672c\u548c\u6761\u4ef6\u7b49\uff1b\u8ba9\u4e0d\u540c\u7684\u4e2d\u4ecb\u673a\u6784\uff0c\u5145\u5206\u53d1\u6325\u6240\u957f\uff0c\u4e3a\u6295\u8d44\u8005\u548c\u5c0f\u5fae\u4f01\u4e1a\u63d0\u4f9b\u4e13\u4e1a\u670d\u52a1\u3002"}