{"version":"1.0","provider_name":"iSPOT x Talks","provider_url":"https:\/\/www.i-spotmedia.com\/Blog","title":"[\u8de8\u5883\u96fb\u5546\u5c0f\u5de5\u5177] Shopping Insights \u6d88\u8cbb\u8005\u8cfc\u7269\u6d1e\u5bdf l iSPOT\u827e\u65af\u535a\u5a92\u9ad4 x \u6578\u4f4d\u5c0f\u66f8\u623f","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"VFEEZkOBOy\"><a href=\"https:\/\/www.i-spotmedia.com\/Blog\/shopping-insights\/\">\u3016Google\u5de5\u5177\u3017\u904b\u7528 Shopping Insights \u638c\u63e1\u6d88\u8cbb\u8005\u6d1e\u5bdf<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/www.i-spotmedia.com\/Blog\/shopping-insights\/embed\/#?secret=VFEEZkOBOy\" width=\"600\" height=\"338\" title=\"\u3016Google\u5de5\u5177\u3017\u904b\u7528 Shopping Insights \u638c\u63e1\u6d88\u8cbb\u8005\u6d1e\u5bdf &#8212; iSPOT x Talks\" data-secret=\"VFEEZkOBOy\" 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:\/\/www.i-spotmedia.com\/Blog\/wp-includes\/js\/wp-embed.js\n<\/script>\n","thumbnail_url":"https:\/\/www.i-spotmedia.com\/Blog\/wp-content\/uploads\/2018\/06\/Shopping-Insights-cover-0706.png","thumbnail_width":1719,"thumbnail_height":870,"description":"\u8de8\u5883\u96fb\u5546\u662f\u8fd1\u671f\u7684\u71b1\u9580\u8da8\u52e2\uff0c\u5728\u6587\u5316\u3001\u8a9e\u8a00\u8207\u5730\u7406\u4f4d\u7f6e\u8003\u91cf\u4e0b\uff0c\u591a\u6578\u53f0\u7063\u54c1\u724c\u6703\u9078\u64c7\u4e2d\u570b\u6216\u6771\u5357\u4e9e\u5e02\u5834\uff0c\u4f46\u65b0\u8208\u5e02\u5834\u7d93\u5e38\u6703\u70ba\u4e86\u7af6\u722d\u800c\u6253\u51fa\u300c\u50f9\u683c\u6230\u300d\uff0c\u751a\u81f3\u5c0e\u81f4\u54c1\u8cea\u4e0b\u964d\u7684\u53ef\u80fd...\u5c0d\u65bc\u54c1\u724c\u767c\u5c55\u8207\u5229\u6f64\u9762\u5411\uff0c\u4f60\u6709\u53e6\u4e00\u9805\u66f4\u6210\u719f\u7684\u9078\u64c7\u2014\u2014\u7f8e\u570b\u5e02\u5834\u3002\u7f8e\u570b\u5e02\u5834\u7684\u6d88\u8cbb\u65cf\u7fa4\u91cd\u8996\u54c1\u8cea\uff0c\u64c1\u6709\u8f03\u5f37\u7684\u6d88\u8cbb\u529b\uff0c\u4f01\u696d\u53ef\u5728\u9019\u88e1\u900f\u904e\u54c1\u8cea\u3001\u92b7\u552e\u8207\u670d\u52d9\u7b49\u74b0\u7bc0\u7cbe\u9032\u54c1\u724c\u7684\u5c64\u7d1a\uff0c\u53ef\u4ee5\u8aaa\u662f\u63d0\u5347\u300c\u54c1\u724c\u529f\u529b\u300d\u7684\u597d\u53bb\u8655\uff01\u4f46\u7f8e\u570b\u5e02\u5834\u7af6\u722d\u6fc0\u70c8\uff0c\u8a31\u591a\u53f0\u7063\u54c1\u724c\u4ecd\u6703\u64d4\u6182\u7121\u6cd5\u5728\u9019\u584a\u5e02\u5834\u5b58\u6d3b...\u5982\u679c\u4f60\u662f\u65b0\u5275\u4f01\u696d\uff0c\u6216\u662f\u4ecd\u5728\u89c0\u770b\u662f\u5426\u8981\u9032\u5165\u7f8e\u570b\u5e02\u5834\uff0c\u4f60\u53ef\u4ee5\u53c3\u8003\u770b\u770b\u9019\u9805\u597d\u7528\u7684\u5de5\u5177\u2014\u2014Google Shopping Insights\u3002"}