<?xml version="1.0"?>
<oembed><version>1.0</version><provider_name>&#x5982;&#x4F55;&#x64CD;&#x4F5C; &amp; &#x6700;&#x4F73;&#x8F6F;&#x4EF6;</provider_name><provider_url>https://howto.ping.fm/zh/</provider_url><author_name>&#x5982;&#x4F55;&#x64CD;&#x4F5C; &amp; &#x6700;&#x4F73;&#x8F6F;&#x4EF6;</author_name><author_url>https://howto.ping.fm/zh/</author_url><title>Microsoft Azure &#x5BF9;&#x5C0F;&#x4F01;&#x4E1A;&#x7684;&#x524D;&#x4E94;&#x5927;&#x4F18;&#x52BF;</title><type>rich</type><width>600</width><height>338</height><html>&lt;blockquote class="wp-embedded-content" data-secret="aKchuuxlm1"&gt;&lt;a href="https://howto.ping.fm/zh/microsoft-azure-for-small-business/"&gt;&#x5FAE;&#x8F6F;Azure&#x4E3A;&#x5C0F;&#x578B;&#x4F01;&#x4E1A;&#x5E26;&#x6765;&#x7684;&#x4E94;&#x5927;&#x4F18;&#x52BF;&lt;/a&gt;&lt;/blockquote&gt;&lt;iframe sandbox="allow-scripts" security="restricted" src="https://howto.ping.fm/zh/microsoft-azure-for-small-business/embed/#?secret=aKchuuxlm1" width="600" height="338" title="&#x201C;&#x5FAE;&#x8F6F;Azure&#x4E3A;&#x5C0F;&#x578B;&#x4F01;&#x4E1A;&#x5E26;&#x6765;&#x7684;&#x4E94;&#x5927;&#x4F18;&#x52BF;&#x201D; &#x2014; &#x5982;&#x4F55;&#x64CD;&#x4F5C; &amp; &#x6700;&#x4F73;&#x8F6F;&#x4EF6;" data-secret="aKchuuxlm1" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" class="wp-embedded-content"&gt;&lt;/iframe&gt;&lt;script&gt;
/**
 * WordPress inline HTML embed
 *
 * @since 4.4.0
 * @output wp-includes/js/wp-embed.js
 *
 * This file cannot have ampersands in it. This is to ensure
 * it can be embedded in older versions of WordPress.
 * See https://core.trac.wordpress.org/changeset/35708.
 */
(function ( window, document ) {
	'use strict';

	var supportedBrowser = false,
		loaded = false;

		if ( document.querySelector ) {
			if ( window.addEventListener ) {
				supportedBrowser = true;
			}
		}

	/** @namespace wp */
	window.wp = window.wp || {};

	if ( !! window.wp.receiveEmbedMessage ) {
		return;
	}

	/**
	 * Receive embed message.
	 *
	 * @param {MessageEvent} e
	 */
	window.wp.receiveEmbedMessage = function( e ) {
		var data = e.data;

		if ( ! data ) {
			return;
		}

		if ( ! ( data.secret || data.message || data.value ) ) {
			return;
		}

		if ( /[^a-zA-Z0-9]/.test( data.secret ) ) {
			return;
		}

		var iframes = document.querySelectorAll( 'iframe[data-secret="' + data.secret + '"]' ),
			blockquotes = document.querySelectorAll( 'blockquote[data-secret="' + data.secret + '"]' ),
			allowedProtocols = new RegExp( '^https?:$', 'i' ),
			i, source, height, sourceURL, targetURL;

		for ( i = 0; i &lt; blockquotes.length; i++ ) {
			blockquotes[ i ].style.display = 'none';
		}

		for ( i = 0; i &lt; iframes.length; i++ ) {
			source = iframes[ i ];

			if ( e.source !== source.contentWindow ) {
				continue;
			}

			source.removeAttribute( 'style' );

			/* Resize the iframe on request. */
			if ( 'height' === data.message ) {
				height = parseInt( data.value, 10 );
				if ( height &gt; 1000 ) {
					height = 1000;
				} else if ( ~~height &lt; 200 ) {
					height = 200;
				}

				source.height = height;
			}

			/* Link to a specific URL on request. */
			if ( 'link' === data.message ) {
				sourceURL = document.createElement( 'a' );
				targetURL = document.createElement( 'a' );

				sourceURL.href = source.getAttribute( 'src' );
				targetURL.href = data.value;

				/* Only follow link if the protocol is in the allow list. */
				if ( ! allowedProtocols.test( targetURL.protocol ) ) {
					continue;
				}

				/* Only continue if link hostname matches iframe's hostname. */
				if ( targetURL.host === sourceURL.host ) {
					if ( document.activeElement === source ) {
						window.top.location.href = data.value;
					}
				}
			}
		}
	};

	function onLoad() {
		if ( loaded ) {
			return;
		}

		loaded = true;

		var isIE10 = -1 !== navigator.appVersion.indexOf( 'MSIE 10' ),
			isIE11 = !!navigator.userAgent.match( /Trident.*rv:11\./ ),
			iframes = document.querySelectorAll( 'iframe.wp-embedded-content' ),
			iframeClone, i, source, secret;

		for ( i = 0; i &lt; iframes.length; i++ ) {
			/** @var {IframeElement} */
			source = iframes[ i ];

			secret = source.getAttribute( 'data-secret' );
			if ( ! secret ) {
				/* Add secret to iframe */
				secret = Math.random().toString( 36 ).substr( 2, 10 );
				source.src += '#?secret=' + secret;
				source.setAttribute( 'data-secret', secret );
			}

			/* Remove security attribute from iframes in IE10 and IE11. */
			if ( ( isIE10 || isIE11 ) ) {
				iframeClone = source.cloneNode( true );
				iframeClone.removeAttribute( 'security' );
				source.parentNode.replaceChild( iframeClone, source );
			}

			/*
			 * Let post embed window know that the parent is ready for receiving the height message, in case the iframe
			 * loaded before wp-embed.js was loaded. When the ready message is received by the post embed window, the
			 * window will then (re-)send the height message right away.
			 */
			source.contentWindow.postMessage( {
				message: 'ready',
				secret: secret
			}, '*' );
		}
	}

	if ( supportedBrowser ) {
		window.addEventListener( 'message', window.wp.receiveEmbedMessage, false );
		document.addEventListener( 'DOMContentLoaded', onLoad, false );
		window.addEventListener( 'load', onLoad, false );
	}
})( window, document );
&lt;/script&gt;
</html><thumbnail_url>https://www.ping.fm/howto/wp-content/uploads/2024/03/Microsoft-Azure-for-Small-Business-Top-5-Benefits-Chinese.jpg</thumbnail_url><thumbnail_width>1280</thumbnail_width><thumbnail_height>731</thumbnail_height><description>&#x5FAE;&#x8F6F;Azure&#x5BF9;&#x5C0F;&#x4F01;&#x4E1A;&#x7684;&#x4E94;&#x5927;&#x597D;&#x5904; &#x5BF9;&#x5C0F;&#x578B;&#x4F01;&#x4E1A;&#x63A2;&#x7D22;&#x6570;&#x5B57;&#x89E3;&#x51B3;&#x65B9;&#x6848;&#x901A;&#x5E38;&#x4F1A;&#x6D89;&#x53CA;&#x5230;&#x4E91;&#x670D;&#x52A1;&#xFF0C;&#x800C;&#x5728;&#x8FD9;&#x4E00;&#x9886;&#x57DF;&#x7684;&#x5F3A;&#x5927;&#x529B;&#x91CF;&#x5C31;&#x662F;&#x5FAE;&#x8F6F;Azure&#x3002;Azure&#x51ED;&#x501F;&#x5176;&#x8BBE;&#x8BA1;&#x4EE5;&#x6EE1;&#x8DB3;&#x591A;&#x6837;&#x5316;&#x9700;&#x6C42;&#x7684;&#x4E30;&#x5BCC;&#x4EA7;&#x54C1;&#xFF0C;&#x6210;&#x4E3A;&#x4F01;&#x4E1A;&#x5BFB;&#x6C42;&#x6269;&#x5C55;&#x3001;&#x4FDD;&#x62A4;&#x5B89;&#x5168;&#x548C;&#x7B80;&#x5316;&#x64CD;&#x4F5C;&#x7684;&#x591A;&#x529F;&#x80FD;&#x9009;&#x62E9;&#x3002; &#x1F947; Azure&#x5B89;&#x5168;&#x4E2D;&#x5FC3; &#x5FAE;&#x8F6F;Azure&#x5B89;&#x5168;&#x4E2D;&#x5FC3;&#x662F;&#x4E00;&#x4E2A;&#x7EDF;&#x4E00;&#x7684;&#x5B89;&#x5168;&#x7BA1;&#x7406;&#x7CFB;&#x7EDF;&#xFF0C;&#x5B83;&#x52A0;&#x5F3A;&#x4E86;&#x6570;&#x636E;&#x4E2D;&#x5FC3;&#x7684;&#x5B89;&#x5168;&#x72B6;&#x51B5;&#xFF0C;&#x5E76;&#x5728;&#x4E91;&#x4E2D;&#x63D0;&#x4F9B;&#x9AD8;&#x7EA7;&#x5A01;&#x80C1;&#x4FDD;&#x62A4;&#x2014;&#x2014;&#x65E0;&#x8BBA;&#x662F;&#x5728;Azure&#x5185;&#x8FD8;&#x662F;&#x5916;&#x7684;&#x6DF7;&#x5408;&#x5DE5;&#x4F5C;&#x8D1F;&#x8F7D;&#xFF0C;&#x4EE5;&#x53CA;&#x672C;&#x5730;&#x73AF;&#x5883;&#x3002; &#x5B98;&#x65B9;&#x7F51;&#x7AD9; &#x4F18;&#x70B9; &#x5148;&#x8FDB;&#x7684;&#x5A01;&#x80C1;&#x68C0;&#x6D4B;&#x548C;&#x54CD;&#x5E94;&#x80FD;&#x529B; &#x6301;&#x7EED;&#x7684;&#x5B89;&#x5168;&#x8BC4;&#x4F30;&#x548C;&#x5EFA;&#x8BAE; &#x7F3A;&#x70B9; &#x5BF9;&#x521D;&#x5B66;&#x8005;&#x6765;&#x8BF4;&#x914D;&#x7F6E;&#x53EF;&#x80FD;&#x590D;&#x6742; &#x5BF9;&#x4E8E;&#x5C0F;&#x578B;&#x5DE5;&#x4F5C;&#x8D1F;&#x8F7D;&#x53EF;&#x80FD;&#x6210;&#x672C;&#x8F83;&#x9AD8; &#x1F948; Azure&#x5B58;&#x50A8; &#x5BF9;&#x4E8E;&#x5BFB;&#x6C42;&#x5B89;&#x5168;&#x548C;&#x53EF;&#x6269;&#x5C55;&#x5B58;&#x50A8;&#x89E3;&#x51B3;&#x65B9;&#x6848;&#x7684;&#x5C0F;&#x578B;&#x4F01;&#x4E1A;&#xFF0C;Azure&#x5B58;&#x50A8;&#x63D0;&#x4F9B;&#x4E86;&#x4E00;&#x7CFB;&#x5217;&#x4E91;&#x5B58;&#x50A8;&#x670D;&#x52A1;&#xFF0C;&#x5305;&#x62EC;blob&#x3001;&#x6587;&#x4EF6;&#x3001;&#x961F;&#x5217;&#x548C;&#x8868;&#xFF0C;&#x65E8;&#x5728;&#x4E3A;&#x60A8;&#x7684;&#x6570;&#x636E;&#x63D0;&#x4F9B;&#x9AD8;&#x53EF;&#x7528;&#x6027;&#x548C;&#x6301;&#x4E45;&#x6027;&#x3002; &#x5B98;&#x65B9;&#x7F51;&#x7AD9; &#x4F18;&#x70B9; &#x53EF;&#x6269;&#x5C55;&#x548C;&#x6301;&#x4E45;&#x7684;&#x5B58;&#x50A8;&#x9009;&#x9879; &#x6309;&#x4F7F;&#x7528;&#x4ED8;&#x8D39;&#x7684;&#x5B9A;&#x4EF7;&#x6A21;&#x5F0F; &#x7F3A;&#x70B9; &#x53EF;&#x80FD;&#x9700;&#x8981;&#x989D;&#x5916;&#x7684;&#x6570;&#x636E;&#x4F20;&#x8F93;&#x8D39;&#x7528; &#x9700;&#x8981;&#x5B66;&#x4E60;&#x66F2;&#x7EBF;&#x4EE5;&#x8FBE;&#x5230;&#x6700;&#x4F73;&#x4F7F;&#x7528;&#x6548;&#x679C; &#x1F949; Azure&#x652F;&#x6301;&#x8BA1;&#x5212; Azure&#x7684;&#x652F;&#x6301;&#x8BA1;&#x5212;&#x4ECE;&#x4E3A;&#x5C0F;&#x578B;&#x4F01;&#x4E1A;&#x8BBE;&#x8BA1;&#x7684;&#x57FA;&#x672C;&#x9009;&#x9879;&#x5230;&#x4E3A;&#x4F01;&#x4E1A;&#x63D0;&#x4F9B;&#x7684;&#x66F4;&#x5168;&#x9762;&#x7684;&#x89E3;&#x51B3;&#x65B9;&#x6848;&#x4E0D;&#x7B49;&#x3002;&#x8FD9;&#x4E9B;&#x8BA1;&#x5212;&#x786E;&#x4FDD;&#x4F01;&#x4E1A;&#x5728;&#x89E3;&#x51B3;&#x5404;&#x79CD;&#x4E91;&#x76F8;&#x5173;&#x6311;&#x6218;&#x65F6;&#x80FD;&#x591F;&#x83B7;&#x5F97;&#x6240;&#x9700;&#x7684;&#x5E2E;&#x52A9;&#x3002; &#x5B98;&#x65B9;&#x7F51;&#x7AD9; &#x4F18;&#x70B9; &#x591A;&#x79CD;&#x8BA1;&#x5212;&#xFF0C;&#x9488;&#x5BF9;&#x4E0D;&#x540C;&#x9700;&#x6C42;&#x91CF;&#x8EAB;&#x5B9A;&#x505A; &#x83B7;&#x53D6;&#x4E13;&#x4E1A;&#x77E5;&#x8BC6;&#x548C;&#x89E3;&#x51B3;&#x95EE;&#x9898;&#x7684;&#x80FD;&#x529B; &#x7F3A;&#x70B9; &#x5BF9;&#x5C0F;&#x578B;&#x4F01;&#x4E1A;&#x800C;&#x8A00;&#xFF0C;&#x9AD8;&#x7EA7;&#x522B;&#x8BA1;&#x5212;&#x53EF;&#x80FD;&#x4EF7;&#x683C;&#x6602;&#x8D35; &#x57FA;&#x672C;&#x8BA1;&#x5212;&#x53EF;&#x80FD;&#x65E0;&#x6CD5;&#x8986;&#x76D6;&#x6240;&#x6709;&#x60C5;&#x51B5; 4 Azure &#x76D1;&#x63A7; &#x4E3A;&#x4E86;&#x7EF4;&#x62A4;&#x53EF;&#x9760;&#x6027;&#x548C;&#x6027;&#x80FD;&#xFF0C;Azure &#x76D1;&#x63A7;&#x5E2E;&#x52A9;&#x5C0F;&#x578B;&#x4F01;&#x4E1A;&#x6536;&#x96C6;&#x3001;&#x5206;&#x6790;&#x5E76;&#x5BF9;&#x5176;&#x4E91;&#x73AF;&#x5883;&#x548C;&#x672C;&#x5730;&#x73AF;&#x5883;&#x7684;&#x9065;&#x6D4B;&#x6570;&#x636E;&#x91C7;&#x53D6;&#x884C;&#x52A8;&#x3002;&#x8FD9;&#x4F7F;&#x5F97;&#x4F01;&#x4E1A;&#x80FD;&#x591F;&#x6700;&#x5927;&#x5316;&#x5176;&#x5E94;&#x7528;&#x7A0B;&#x5E8F;&#x7684;&#x6027;&#x80FD;&#x548C;&#x53EF;&#x7528;&#x6027;&#x3002; &#x5B98;&#x65B9;&#x7F51;&#x7AD9; &#x4F18;&#x70B9; &#x63D0;&#x4F9B;&#x5BF9;&#x5E94;&#x7528;&#x7A0B;&#x5E8F;&#x548C;&#x57FA;&#x7840;&#x8BBE;&#x65BD;&#x7684;&#x6DF1;&#x5165;&#x6D1E;&#x5BDF; &#x6709;&#x52A9;&#x4E8E;&#x4E3B;&#x52A8;&#x53D1;&#x73B0;&#x95EE;&#x9898;&#x5E76;&#x8FDB;&#x884C;&#x6545;&#x969C;&#x6392;&#x9664; &#x7F3A;&#x70B9; &#x8BBE;&#x7F6E;&#x548C;&#x5B9A;&#x5236;&#x8B66;&#x62A5;&#x7684;&#x590D;&#x6742;&#x6027; &#x6570;&#x636E;&#x6444;&#x53D6;&#x548C;&#x5B58;&#x50A8;&#x53EF;&#x80FD;&#x53D8;&#x5F97;&#x6602;&#x8D35; 5 Azure &#x6210;&#x672C;&#x7BA1;&#x7406; &#x901A;&#x8FC7; Azure &#x6210;&#x672C;&#x7BA1;&#x7406;&#xFF0C;&#x5C0F;&#x578B;&#x4F01;&#x4E1A;&#x53EF;&#x4EE5;&#x66F4;&#x6E05;&#x6670;&#x5730;&#x4E86;&#x89E3;&#x4ED6;&#x4EEC;&#x7684;&#x4E91;&#x652F;&#x51FA;&#xFF0C;&#x5E76;&#x5BF9;&#x4F18;&#x5316;&#x4E91;&#x8D39;&#x7528;&#x4F5C;&#x51FA;&#x660E;&#x667A;&#x51B3;&#x7B56;&#x3002;&#x8FD9;&#x4E2A;&#x5DE5;&#x5177;&#x6709;&#x52A9;&#x4E8E;&#x8DDF;&#x8E2A;&#x8D44;&#x6E90;&#x4F7F;&#x7528;&#x5E76;&#x6709;&#x6548;&#x5730;&#x7BA1;&#x7406;&#x6210;&#x672C;&#x3002; &#x5B98;&#x65B9;&#x7F51;&#x7AD9; &#x4F18;&#x70B9; &#x8D22;&#x52A1;&#x53EF;&#x89C1;&#x6027;&#x548C;&#x9884;&#x7B97;&#x5DE5;&#x5177; &#x6709;&#x52A9;&#x4E8E;&#x4F18;&#x5316;&#x4E91;&#x652F;&#x51FA; &#x7F3A;&#x70B9; [&hellip;]</description></oembed>
