Windows phone 7 通过一些API获取pubCenter eCPM?

Windows phone 7 通过一些API获取pubCenter eCPM?,windows-phone-7,Windows Phone 7,我想知道是否有可能通过某种API获得当前的pubCenter eCPM 有一个名为“PubCenter Adviser”的WindowsPhone应用程序,它显示所有PubCenter类别的当前eCPM 他们是怎么做到的? 有没有API可以让我从中获取数据? 如果存在解决方案,是否有人可以提供指向任何文档或类似内容的链接 我搜索了谷歌,但什么也没找到:( 亲切问候,, 马西耶 他们是怎么做到的 你得问问他们 有没有API可以让我从中获取数据 没有文档化的API。不过,很可能有API可用:在pub

我想知道是否有可能通过某种API获得当前的pubCenter eCPM

有一个名为“PubCenter Adviser”的WindowsPhone应用程序,它显示所有PubCenter类别的当前eCPM

他们是怎么做到的? 有没有API可以让我从中获取数据? 如果存在解决方案,是否有人可以提供指向任何文档或类似内容的链接

我搜索了谷歌,但什么也没找到:(

亲切问候,, 马西耶

他们是怎么做到的

你得问问他们

有没有API可以让我从中获取数据

没有文档化的API。不过,很可能有API可用:在pubcenter页面上,图形是使用Silverlight显示的。快速查看页面的HTML代码可以看出,数据不是直接提供给Silverlight应用程序的:

    <object data="data:application/x-silverlight-2," type="application/x-silverlight-2" width="100%" height="100%">
        <param name="source" value="ClientBin/AdvancedReport.xap"/>
        <param name="onerror" value="OnSilverlightError" />
        <param name="background" value="white" />
        <param name="minRuntimeVersion" value="2.0.31005.0" />
        <param name="autoUpgrade" value="true" />
        <param name="uiculture" value="en-US" />
        <param name="culture" value="en-US" />
        <param name="initParams" value="LogFlushThreshold=1,TraceLevel=Verbose,LogServiceUrl=/Shared/Services/LogService.svc,LocaleId=en-us,IsMobileOnlyUser=True,WebMobileAlertMessage=Note: Click data is for websites only" />
            <a href="http://go.microsoft.com/fwlink/?LinkID=124807" style="text-decoration: none;">
            <img src="http://go.microsoft.com/fwlink/?LinkId=108181" alt="Get Microsoft Silverlight" style="border-style: none"/>
        </a>
    </object>

这意味着,一旦加载,Silverlight应用程序将调用某种服务来获取数据。但要知道调用了哪种服务以及使用了哪些参数,您必须对应用程序进行反向工程(通过反编译XAP,或者通过使用Fiddler监视HTTP请求)