ravinet / mahimahi

Web performance measurement toolkit
GNU General Public License v3.0
234 stars 128 forks source link

Issue in loading AMP pages #109

Open akiraTao opened 7 years ago

akiraTao commented 7 years ago

I am trying to load two versions of web pages on mahimahi: ordinary web pages and corresponding AMP (from Accelerated Mobile Pages Project) pages. (AMP pages are mobile device-specific, so I load AMP pages using simulated mobile device environment of Chrome).

For example, the below is ordinary (non-AMP page): https://www.washingtonpost.com/local/education/senators-to-scrutinize-betsy-devos-trumps-pick-for-education-secretary/2017/01/17/3a0e6168-da8f-11e6-9a36-1d296534b31e_story.html?utm_term=.fbbb28022847

while corresponding AMP-page is: https://www.google.com/amp/s/www.washingtonpost.com/amphtml/local/education/senators-to-scrutinize-betsy-devos-trumps-pick-for-education-secretary/2017/01/17/3a0e6168-da8f-11e6-9a36-1d296534b31e_story.html?espv=2

The problem is that mahimahi works perfectly for non-AMP page (in terms of recording and replaying), and also is able to record AMP page. However, it seems that mahimahi is not able to replay AMP page that has been recorded. Or perhaps AMP page is not recorded properly as desired. I'm wondering how to fix this issue and whether there is special command on mahimahi that I need to take care of.

Thank you.

keithw commented 7 years ago

How does it fail? What are your expecting to happen, and what happens instead?

On Jan 31, 2017 7:11 PM, "akilaTao" notifications@github.com wrote:

I am trying to load two versions of web pages on mahimahi: ordinary web pages and corresponding AMP (from Accelerated Mobile Pages Project) pages. (AMP pages are mobile device-specific, so I load AMP pages using simulated mobile device environment of Chrome).

For example, the below is ordinary (non-AMP page): https://www.washingtonpost.com/local/education/senators- to-scrutinize-betsy-devos-trumps-pick-for-education- secretary/2017/01/17/3a0e6168-da8f-11e6-9a36-1d296534b31e_ story.html?utm_term=.fbbb28022847

while corresponding AMP-page is: https://www.google.com/amp/s/www.washingtonpost.com/amphtml/local/education/ senators-to-scrutinize-betsy-devos-trumps-pick-for- education-secretary/2017/01/17/3a0e6168-da8f-11e6-9a36- 1d296534b31e_story.html?espv=2

The problem is that mahimahi works perfectly for non-AMP page (in terms of recording and replaying), and also is able to record AMP page. However, it seems that mahimahi is not able to replay AMP page that has been recorded. Or perhaps AMP page is not recorded properly as desired. I'm wondering how to fix this issue and whether there is special command on mahimahi that I need to take care of.

Thank you.

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/ravinet/mahimahi/issues/109, or mute the thread https://github.com/notifications/unsubscribe-auth/AAMwO0LfWDm1XI6f1iT00MiCQ7lOIjM9ks5rX_fkgaJpZM4Lzclw .

akiraTao commented 7 years ago

Yes. First I run: mm-webrecord ~/Desktop/baidu bash [record] chromium-browser —-ignore-certificate-errors

Then in the chromium-browser, I type the url and it records successfully.

2017-01-31 23 22 25

Then I exit the [record] mode and type: mm-webreplay ~/Desktop/baidu bash [replay] chromium-browser —-ignore-certificate-errors

Again, I copy and paste the url. What I am expecting is that the browser replays the same webpage recorded before (which works for ordinary pages), but now for AMP page, the result becomes:

2017-01-31 23 24 19
keithw commented 7 years ago

Hello,

I can't replicate this problem. I ran:

mm-webrecord /tmp/amp chromium-browser --ignore-certificate-errors --user-data-dir=/tmp/nonexistent$(date +%s%N) 'https://www.google.com/amp/s/www.washingtonpost.com/amphtml/local/education/senators-to-scrutinize-betsy-devos-trumps-pick-for-education-secretary/2017/01/17/3a0e6168-da8f-11e6-9a36-1d296534b31e_story.html?espv=2'

and waited for the page to load. Then I quit Chromium and ran:

mm-webreplay /tmp/amp chromium-browser --ignore-certificate-errors --user-data-dir=/tmp/nonexistent$(date +%s%N) 'https://www.google.com/amp/s/www.washingtonpost.com/amphtml/local/education/senators-to-scrutinize-betsy-devos-trumps-pick-for-education-secretary/2017/01/17/3a0e6168-da8f-11e6-9a36-1d296534b31e_story.html?espv=2'

and the page again loaded.

From your screenshots, it looks like you might be emulating an iPhone 6+ (including its User-Agent) when recording, but not when replaying. This will cause the error message shown -- you need to match everything (including the User-Agent) when replaying.

akiraTao commented 7 years ago

It's weird. I am doing exactly the same thing as you did, but I am still having such a problem (I matched everything). Is there any requirement for chromium-server or Ubuntu version then? Thank you.

keithw commented 7 years ago

There's no particular requirement, but the Web browser does have to send the same request headers during the original request as later. You might try to compare the two requests in the developer tools...

akiraTao commented 7 years ago

I just want to make sure when you were recording and replaying AMP pages, did you do that in the environment of mobile device as I did in the first screenshot? Because if you are simulating without changing the simulation platform to mobile devices, the AMP url will automatically be converted to corresponding non-AMP url, and in that case replaying works for me as well.

I have tried replaying AMP pages in different machines (Ubuntu) but all of them have the problem and I'm stuck at this point now...any suggestion would be appreciated!

keithw commented 7 years ago

I ran the exact command-lines I gave -- no, I didn't emulate any mobile device. Do you have a command-line switch that does that?

If not, my suggestion is as I said before: compare the two requests in the developer tools, take a screenshot of each one, and post it here.

akiraTao commented 7 years ago

Yes, I was using developer-tools to emulate mobile device. I'm not totally sure which part you want me to show you, but I have two screenshots:

For recording AMP page,

2017-02-05 20 44 24

But for replaying,

2017-02-05 20 57 36

Thank you!

worenga commented 7 years ago

In order to debug this issue we need:

Can you compare the HTTP headers from the recording session and the replay session? Are there any differences? Are the urls the same?

akiraTao commented 7 years ago

The steps I performed were quite simple though. First of all I typed the command: mm-webrecord /tmp/amp chromium-browser --ignore-certificate-errors --user-data-dir=/tmp/nonexistent$(date +%s%N)

Now the chromium-browser showed up, and then I used developer-tools to simulate iphone6-plus, as shown in the screen shot in the previous post (this step is crucial since I need to make sure I am simulating mobile device). Then I typed the url: https://www.google.com/amp/s/www.washingtonpost.com/amphtml/local/education/senators-to-scrutinize-betsy-devos-trumps-pick-for-education-secretary/2017/01/17/3a0e6168-da8f-11e6-9a36-1d296534b31e_story.html?espv=2

(Notice the sign of "amp" inside url, which refers to specific type of web pages I'm interested in, but they are also the ones that failed to replay in mahimahi).

Until now everything looks right, and the mahimahi loaded the web pages successfully with exact url. Now I quit the chrome, and typed in the terminal: mm-webreplay /tmp/amp chromium-browser --ignore-certificate-errors --user-data-dir=/tmp/nonexistent$(date +%s%N)

And I again used the developer-tools of chrome to emulate the iphone6 plus environment, and copied and pasted the exactly same url as before. However, the web pages failed to be replayed.

Attached are recording files. Urls are the same but headers are definitely different since the replayed version contained nothing in its HTML header.

amp.tar.gz

Thank you very much!

keithw commented 7 years ago

Can you please compare the two requests in the "Developer tools," (especially the request headers) take a screenshot of each one, and post it here? Thanks.

worenga commented 7 years ago

Here are the Request First Lines contained in the recording:

GET /pwa/js/offline-analytics.js HTTP/1.1
HTTPS?:yes
www.washingtonpost.com

GET /wp-stat/rum/wprum.min.js HTTP/1.1
HTTPS?:yes
js.washingtonpost.com

GET /pwa/service-worker-registration.js?_sw-precache=373a64985db6c92d47e745b6b87bcf4c HTTP/1.1
HTTPS?:yes
www.washingtonpost.com

GET /beacon.js HTTP/1.1
HTTPS?:yes
sb.scorecardresearch.com

GET /pwa/js/analytics.js?_sw-precache=d83b852f86491e941465b5689ce03fbf HTTP/1.1
HTTPS?:yes
www.washingtonpost.com

GET /pb/gr/c/tracking/rAr0er1jVmYO9q/global/b4bdf54ae2.js?_=3f62d HTTP/1.1
HTTPS?:yes
js.washingtonpost.com

GET /index.html?callback=jQuery182004589194259501328_1486443799034&browser=mozilla&os=iphone&browserVersion=an+unknown+version&build=71482e9&webview=false&flashVersion=0.0.0&vendor=jw&sessionId=%5BCS%5Dv1%7C2C4CAA8E85031625-40001182000002FB%5BCE%5D&page=posttv%3Avideo+-+5f2d8e7c-dd34-11e6-8902-610fe486791c+-++-+Betsy+DeVos%E2%80%99s+confirmation+hearing%2C+in+three+minutes&channel=wp+-+posttv&video=post+originals%3Avideo+-+1%2F17%2F2017+-+betsy+devoss+confirmation+hearing%2C+in+three+minutes&videoId=5f2d8e7c-dd34-11e6-8902-610fe486791c&videoName=post+originals%3Avideo+-+1%2F17%2F2017+-+betsy+devoss+confirmation+hearing%2C+in+three+minutes&videoType=vod&videoSource=the+washington+post&dateFirstPublished=1484713625716&dateLastPublished=1486247901000&type=video&section=post+originals&url=https%3A%2F%2Fjs.washingtonpost.com%2Fvideo%2Fc%2Fembed%2F5f2d8e7c-dd34-11e6-8902-610fe486791c%3FembedContext%3Damp%26renderingMode%3Dhtml5%23amp%3D1&HTTP_REFERER=https%3A%2F%2Fwww-washingtonpost-com.cdn.ampproject.org%2Fv%2Fs%2Fwww.washingtonpost.com%2Famphtml%2Flocal%2Feducation%2Fsenators-to-scrutinize-betsy-devos-trumps-pick-for-education-secretary%2F2017%2F01%2F17%2F3a0e6168-da8f-11e6-9a36-1d296534b31e_story.html%3Famp_js_v%3D7&adsDuration=&playerType=posttv-embed-amp&evtName=Player+Created&evtType=event110&evtTime=1486443812518&offsetTop=NaN&xWpSplit=&thinkAdBlock=false&renderingMode=html5&jwVersion=7.7.2&durationInSeconds=177&shape=horizontal&embedContext=amp&site=amphtml&isIframe=true&coastguard=0&videoProducer=bastien+inzaurralde&videoProducerReason=editors+credit&_=1486443812523 HTTP/1.1
HTTPS?:yes
videotracker.washingtonpost.com

GET /wp-apps/imrs.php?src=http://s3.amazonaws.com/posttv-thumbnails-prod/01-18-2017/t_1484712594640_name_20170117_devos_thumbnail.jpg&w=414&h=233 HTTP/1.1
HTTPS?:yes
img.washingtonpost.com

GET /crx/blobs/QgAAAC6zw0qH2DJtnXe8Z7rUJP2RBPFos_iUFZeK1pkUEMCZdHYj8p7a_Ua08hBbycrdxjgPSh113R5YSvKPiELGM4E_deYYnwGnEukHKvi9QnblAMZSmuWa83CIMhfp_9QOzF2YD0id0yIHiA/extension_1_0_0_1.crx?cms_redirect=yes&expire=1486458093&ip=104.241.44.27&ipbits=0&mm=31&mn=sn-ab5l6nzs&ms=au&mt=1486443623&mv=m&pl=22&sparams=expire,ip,ipbits,mm,mn,ms,mv,pl&signature=4433C30DDBF312096F4A6A39D174D1D9C5A3EBAF.1E99611F1FE68FA7C0ECBBEC592150FE60EF21D5&key=cms1 HTTP/1.1
HTTPS?:no
r5---sn-ab5l6nzs.gvt1.com

GET /ping?h=washingtonpost.com&p=%2Flocal%2Feducation%2Fsenators-to-scrutinize-betsy-devos-trumps-pick-for-education-secretary%2F2017%2F01%2F17%2F3a0e6168-da8f-11e6-9a36-1d296534b31e_story.html&u=eD08Wl0t0p59XnQg4ZtLqrOYHqWBjeyobEWOOR7SQWMfwJQ57dk_WK1Y3OU_PsjO&d=www.washingtonpost.com&g=19624&g0=local%2Clocal%20-%20education%2Carticle&g1=Emma%20Brown%2CDanielle%20Douglas-Gabriel%2CMoriah%20Balingit&g2=&g3=&g4=&c=120&x=1&y=8300&j=30&R=1&W=0&I=0&E=5&r=&t=6281eD08Wl0t0p59XnQg4ZtLqrOYHqWBjeyobEWOOR7SQWMfwJQ57dk_WK1Y3OU_PsjO&b=21828&i=Betsy%20DeVos%2C%20Trump%E2%80%99s%20education%20pick%2C%20lauded%20as%20bold%20reformer%2C%20called%20unfit%20for%20job&T=1486443872404&tz=300&C=2&_ HTTP/1.1
HTTPS?:yes
ping.chartbeat.net

GET /js/plusone.js HTTP/1.1
HTTPS?:yes
apis.google.com

GET /b/ss/wpniwashpostcom/1/H.24.2/s36244844516873?AQB=1&pccr=true&vidn=2C4CAA8E85031625-40001182000002FB&&ndh=1&t=7%2F1%2F2017%200%3A3%3A24%202%20300&ns=wpni&pageName=local%3Aarticle%20-%201d296534b31e%20-%2020170117%20-%20senators-to-scrutinize-betsy-devos-trumps-pick-for-education-secretary&g=https%3A%2F%2Fjs.washingtonpost.com%2Flocal%2Feducation%2Fsenators-to-scrutinize-betsy-devos-trumps-pick-for-education-secretary%2F2017%2F01%2F17%2F3a0e6168-da8f-11e6-9a36-1d296534b31e_story.html%3Fpwa%3Doff%26resType%3Dtracking%26tref%3Damphtml%23amp%3D1&r=https%3A%2F%2Fwww-washingtonpost-com.cdn.ampproject.org%2Fv%2Fs%2Fwww.washingtonpost.com%2Famphtml%2Flocal%2Feducation%2Fsenators-to-scrutinize-betsy-devos-trumps-pick-for-education-secretary%2F2017%2F01%2F17%2F3a0e6168-da8f-11e6-9a36-1d296534b31e_story.html%3Famp_js_v%3D7&cc=USD&ch=wp%20-%20local&server=washingtonpost.com&events=event1%2Cevent105&v1=local%3Aarticle%20-%201d296534b31e%20-%2020170117%20-%20senators-to-scrutinize-betsy-devos-trumps-pick-for-education-secretary&c2=wp%20-%20local%20-%20education&v2=wp%20-%20local&c3=article&c4=the%20washington%20post&c5=emma%20brown%3B%20danielle%20douglas-gabriel%3B%20moriah%20balingit&c8=Tuesday&v8=emma%20brown%3B%20danielle%20douglas-gabriel%3B%20moriah%20balingit&c9=12%3A00AM&c10=Weekday&c12=3a0e6168-da8f-11e6-9a36-1d296534b31e&c13=3a0e6168-da8f-11e6-9a36-1d296534b31e%20-%20Betsy%20DeVos%2C%20Trump%E2%80%99s%20education%20pick%2C%20lauded%20as%20bold%20reformer%2C%20called%20unfit%20for%20job&v14=New&v15=First%20Visit&v16=1&c17=First%20Visit&v17=article&c18=New&v18=article&c23=local%7Ceducation%7Carticle&v28=notblocked&v31=desktop&c32=video%20recommendation%20-%20recipe%204&c33=anonymous&v33=anonymous&c34=News&c35=www-washingtonpost-com.cdn.ampproject.org&v35=www-washingtonpost-com.cdn.ampproject.org&c37=anonymous&c39=%2Flocal%2Feducation&v39=portrait&c40=Education&c51=entry%3Ewp%20-%20local&c52=unknown&v57=none&c58=amphtml&v58=amphtml&c61=0%7C0&c62=https&v62=logged%20out&c63=notblocked&c70=pagebuilder&v70=pagebuilder&c73=4477478732123-1486443803902&v73=.5bb9fb1aacdf&h1=local%7Ceducation%7Carticle&s=414x736&c=24&j=1.6&v=N&k=Y&bw=1&bh=1&AQE=1 HTTP/1.1
HTTPS?:yes
smetrics.washingtonpost.com

GET /local/education/senators-to-scrutinize-betsy-devos-trumps-pick-for-education-secretary/2017/01/17/3a0e6168-da8f-11e6-9a36-1d296534b31e_story.html?resType=tracking&pwa=off&tref=amphtml HTTP/1.1
HTTPS?:yes
js.washingtonpost.com

GET /o/oauth2/postmessageRelay?parent=https%3A%2F%2Fwww.google.com&jsh=m%3B%2F_%2Fscs%2Fapps-static%2F_%2Fjs%2Fk%3Doz.gapi.en_US.exYARKUw2c0.O%2Fm%3D__features__%2Fam%3DAQ%2Frt%3Dj%2Fd%3D1%2Frs%3DAGLTcCM1IMsxXaVeB_bZ4O6VIksXGPgIcA HTTP/1.1
HTTPS?:yes
accounts.google.com

GET /safebrowsing/csd/client_model_v5_variation_0.pb HTTP/1.1
HTTPS?:yes
ssl.gstatic.com

GET /v1.0/loxodo/datapoint/saveAmp?org_id=wpniwashpostcom&site_id=www.washingtonpost.com&article_section=wp%2520-%2520%2Flocal%2Feducation&contentLoadTime=2147&domainLookupTime=83&domInteractiveTime=2146&pageDownloadTime=77&serverResponseTime=118&pageLoad=&timezone=300&timestamp=1486443798334&ampdocUrl=https%3A%2F%2Fwww-washingtonpost-com.cdn.ampproject.org%2Fv%2Fs%2Fwww.washingtonpost.com%2Famphtml%2Flocal%2Feducation%2Fsenators-to-scrutinize-betsy-devos-trumps-pick-for-education-secretary%2F2017%2F01%2F17%2F3a0e6168-da8f-11e6-9a36-1d296534b31e_story.html%3Famp_js_v%3D7&title=Betsy%20DeVos%2C%20Trump%E2%80%99s%20education%20pick%2C%20lauded%20as%20bold%20reformer%2C%20called%20unfit%20for%20job&canonicalUrl=https%3A%2F%2Fwww.washingtonpost.com%2Flocal%2Feducation%2Fsenators-to-scrutinize-betsy-devos-trumps-pick-for-education-secretary%2F2017%2F01%2F17%2F3a0e6168-da8f-11e6-9a36-1d296534b31e_story.html&screenWidth=414&screenHeight=736&referrer=&paywall=0 HTTP/1.1
HTTPS?:yes
api.arcpublishing.com

GET /s/opensans/v13/DXI1ORHCpsQm3Vp6mXoaTegdm0LZdjqr5-oayXSOefg.woff2 HTTP/1.1
HTTPS?:yes
fonts.gstatic.com

GET /pwa/install-serviceworker.html HTTP/1.1
HTTPS?:yes
www.washingtonpost.com

GET /pb/gr/c/javascript/r0TEMqBRrcpdrp/jqmodal/7a5b554023.js?_=3f62d HTTP/1.1
HTTPS?:yes
www.washingtonpost.com

GET /ssl-translate-ranker-model HTTP/1.1
HTTPS?:yes
chromium-i18n.appspot.com

GET /video/resources/compact/type/posttv/styles/38082f09f07a50a5d02bad1d3d56f27a.css?_=0299c0 HTTP/1.1
HTTPS?:yes
js.washingtonpost.com

GET /configs/5589bd05e4b0209444f0aea1.json HTTP/1.1
HTTPS?:yes
embed.naytevcdn.com

GET /r/s/css.washingtonpost.com/wp-stat/wapo-sass-assets/fonts/Franklin-ITC-Pro-Bold/e9e4c4dc-e548-4fef-9aa1-80c9cd0f02ce-1.ttf HTTP/1.1
HTTPS?:yes
css-washingtonpost-com.cdn.ampproject.org

GET /pb/resources/js/head.min.js HTTP/1.1
HTTPS?:yes
js.washingtonpost.com

GET /service/update2/crx?os=linux&arch=x64&nacl_arch=x86-64&prod=chromiumcrx&prodchannel=Built%20on%20Ubuntu%20,%20running%20on%20Ubuntu%2016.04&prodversion=55.0.2883.87&lang=en-US&x=id%3Dnmmhkkegccagdldgiimedpiccmgmieda%26v%3D0.0.0.0%26uc%26ping%3Dr%253D-1%2526e%253D1 HTTP/1.1
HTTPS?:yes
clients2.google.com

GET /b?c1=2&c2=3005617&rn=0.9728959101298973&c8=Betsy%20DeVos%2C%20Trump%E2%80%99s%20education%20pick%2C%20lauded%20as%20bold%20reformer%2C%20called%20unfit%20for%20job&c7=https%3A%2F%2Fwww.washingtonpost.com%2Flocal%2Feducation%2Fsenators-to-scrutinize-betsy-devos-trumps-pick-for-education-secretary%2F2017%2F01%2F17%2F3a0e6168-da8f-11e6-9a36-1d296534b31e_story.html&c9=&cs_c7amp=https%3A%2F%2Fwww-washingtonpost-com.cdn.ampproject.org%2Fv%2Fs%2Fwww.washingtonpost.com%2Famphtml%2Flocal%2Feducation%2Fsenators-to-scrutinize-betsy-devos-trumps-pick-for-education-secretary%2F2017%2F01%2F17%2F3a0e6168-da8f-11e6-9a36-1d296534b31e_story.html%3Famp_js_v%3D7 HTTP/1.1
HTTPS?:yes
sb.scorecardresearch.com

GET /_/chrome/newtab?espv=2&ie=UTF-8&client=ubuntu HTTP/1.1
HTTPS?:yes
www.google.com

GET /i/s/js.washingtonpost.com/wp-stat/analytics/t.gif HTTP/1.1
HTTPS?:yes
js-washingtonpost-com.cdn.ampproject.org

GET /pwa/js/content.js?_sw-precache=6ec5e3a209ac7fe471945899a727e8bc HTTP/1.1
HTTPS?:yes
www.washingtonpost.com

GET /ga.js HTTP/1.1
HTTPS?:yes
ssl.google-analytics.com

GET /video/resource/headjs-posttv-external-video-template-9eaee623.js?_=0299c0 HTTP/1.1
HTTPS?:yes
js.washingtonpost.com

GET /chrome/intl/en/welcome.html HTTP/1.1
HTTPS?:no
tools.google.com

GET /pwa/css/app.css?_sw-precache=04d3d6c95504ec48cf9cec54fd94f003 HTTP/1.1
HTTPS?:yes
www.washingtonpost.com

GET /pwa/css/fonts/Franklin-ITC-Pro-Bold.ttf?_sw-precache=454cc79d5f641b0641d2447561fc5222 HTTP/1.1
HTTPS?:yes
www.washingtonpost.com

GET /r/s/css.washingtonpost.com/wp-stat/wapo-sass-assets/fonts/Franklin-ITC-Pro-Light/b147bee6-eb48-46e1-86e1-2538a46794b6-1.ttf HTTP/1.1
HTTPS?:yes
css-washingtonpost-com.cdn.ampproject.org

GET /v1/jwplayer6/ping.gif?h=1720932354&tv=2.7.1&n=0158635379452143&aid=l33YMDXrEeKu%2BiIACp8kUw&e=e&i=1&ifd=&pv=7.7.2&m=1&d=0&t=Betsy%20DeVos%E2%80%99s%20confirmation%20hearing%2C%20in%20three%20minutes&vl=90&ps=4&pid=&ph=0&pl=233&ed=3&wd=414&ab=1&sn=bekle&pad=&fv=&vp=1&pd=1&dd=0&po=0&cb=0&s=0&r=0&ga=0&st=1005&cp=1&hls=1&rf=&sdk=0&mt=0&emi=k179a7wse8bu&pli=&vi=&ap=&mu=https%3A%2F%2Fvideos.posttv.com%2Fwashpost-production%2FTWP%2F20170118%2F587eeb3ae4b00afb20291ddb%2F587eeb4ce4b03735090c015c_1462301751346-fs7oqd_t_1484712808748_640_360_300.mp4&eb=0&id=&pu=https%3A%2F%2Fjs.washingtonpost.com%2Fvideo%2Fc%2Fembed%2F5f2d8e7c-dd34-11e6-8902-610fe486791c%3FembedContext%3Damp%26renderingMode%3Dhtml5%23amp%3D1&pt=Betsy%20DeVos%E2%80%99s%20confirmation%20hearing%2C%20in%20three%20minutes%20-%20The%20Washington%20Post HTTP/1.1
HTTPS?:yes
jwpltx.com

GET /video/resources/js/posttv/vendor/jw/provider.html5.js HTTP/1.1
HTTPS?:yes
js.washingtonpost.com

GET /local/education/senators-to-scrutinize-betsy-devos-trumps-pick-for-education-secretary/2017/01/17/3a0e6168-da8f-11e6-9a36-1d296534b31e_story.html?pworiginres=google-amp-auth&rid=2BwIQMGqdhvLaKvaIn8HJQyND5k0piBOovIhOCSDyTfio1KaxkNpVd1gvcXWeWTo&referrer=&_=0.8134489345898261&__amp_source_origin=https%3A%2F%2Fwww.washingtonpost.com HTTP/1.1
HTTPS?:yes
pwapi.washingtonpost.com

GET /js/sdkloader/ima3.js HTTP/1.1
HTTPS?:yes
imasdk.googleapis.com

GET /pwa/img/apple-touch-icon-120.png?_sw-precache=aa13f7576fc1d473fb69779621783c79 HTTP/1.1
HTTPS?:yes
www.washingtonpost.com

GET /s/opensans/v13/cJZKeOuBrn4kERxqtaUH3VtXRa8TVwTICgirnJhmVJw.woff2 HTTP/1.1
HTTPS?:yes
fonts.gstatic.com

GET /ping?h=washingtonpost.com&p=%2Flocal%2Feducation%2Fsenators-to-scrutinize-betsy-devos-trumps-pick-for-education-secretary%2F2017%2F01%2F17%2F3a0e6168-da8f-11e6-9a36-1d296534b31e_story.html&u=eD08Wl0t0p59XnQg4ZtLqrOYHqWBjeyobEWOOR7SQWMfwJQ57dk_WK1Y3OU_PsjO&d=www.washingtonpost.com&g=19624&g0=local%2Clocal%20-%20education%2Carticle&g1=Emma%20Brown%2CDanielle%20Douglas-Gabriel%2CMoriah%20Balingit&g2=&g3=&g4=&c=120&x=1&y=8300&j=30&R=1&W=0&I=0&E=5&r=&t=6281eD08Wl0t0p59XnQg4ZtLqrOYHqWBjeyobEWOOR7SQWMfwJQ57dk_WK1Y3OU_PsjO&b=21828&i=Betsy%20DeVos%2C%20Trump%E2%80%99s%20education%20pick%2C%20lauded%20as%20bold%20reformer%2C%20called%20unfit%20for%20job&T=1486443812710&tz=300&C=2&_ HTTP/1.1
HTTPS?:yes
ping.chartbeat.net

GET /ping?h=washingtonpost.com&p=%2Flocal%2Feducation%2Fsenators-to-scrutinize-betsy-devos-trumps-pick-for-education-secretary%2F2017%2F01%2F17%2F3a0e6168-da8f-11e6-9a36-1d296534b31e_story.html&u=eD08Wl0t0p59XnQg4ZtLqrOYHqWBjeyobEWOOR7SQWMfwJQ57dk_WK1Y3OU_PsjO&d=www.washingtonpost.com&g=19624&g0=local%2Clocal%20-%20education%2Carticle&g1=Emma%20Brown%2CDanielle%20Douglas-Gabriel%2CMoriah%20Balingit&g2=&g3=&g4=&c=120&x=1&y=8300&j=30&R=1&W=0&I=0&E=5&r=&t=6281eD08Wl0t0p59XnQg4ZtLqrOYHqWBjeyobEWOOR7SQWMfwJQ57dk_WK1Y3OU_PsjO&b=21828&i=Betsy%20DeVos%2C%20Trump%E2%80%99s%20education%20pick%2C%20lauded%20as%20bold%20reformer%2C%20called%20unfit%20for%20job&T=1486443902413&tz=300&C=2&_ HTTP/1.1
HTTPS?:yes
ping.chartbeat.net

GET /ping?h=washingtonpost.com&p=%2Flocal%2Feducation%2Fsenators-to-scrutinize-betsy-devos-trumps-pick-for-education-secretary%2F2017%2F01%2F17%2F3a0e6168-da8f-11e6-9a36-1d296534b31e_story.html&u=eD08Wl0t0p59XnQg4ZtLqrOYHqWBjeyobEWOOR7SQWMfwJQ57dk_WK1Y3OU_PsjO&d=www.washingtonpost.com&g=19624&g0=local%2Clocal%20-%20education%2Carticle&g1=Emma%20Brown%2CDanielle%20Douglas-Gabriel%2CMoriah%20Balingit&g2=&g3=&g4=&c=120&x=1&y=8300&j=30&R=1&W=0&I=0&E=5&r=&t=6281eD08Wl0t0p59XnQg4ZtLqrOYHqWBjeyobEWOOR7SQWMfwJQ57dk_WK1Y3OU_PsjO&b=21828&i=Betsy%20DeVos%2C%20Trump%E2%80%99s%20education%20pick%2C%20lauded%20as%20bold%20reformer%2C%20called%20unfit%20for%20job&T=1486443827386&tz=300&C=2&_ HTTP/1.1
HTTPS?:yes
ping.chartbeat.net

GET /pagead/id HTTP/1.1
HTTPS?:yes
googleads.g.doubleclick.net

GET /1486153081489/f.js HTTP/1.1
HTTPS?:yes
3p.ampproject.net

GET /chrome/components/doodle-notifier-02.html HTTP/1.1
HTTPS?:yes
ssl.gstatic.com

GET /pb/gr/p/tracking/rAr0er1jVmYO9q/head.js?_=fdd20 HTTP/1.1
HTTPS?:yes
js.washingtonpost.com

GET /tag/js/gpt.js HTTP/1.1
HTTPS?:yes
www.googletagservices.com

GET /index.html?callback=jQuery182004589194259501328_1486443799033&sessionId=%5BCS%5Dv1%7C2C4CAA8E85031625-40001182000002FB%5BCE%5D&page=posttv%3Avideo+-+5f2d8e7c-dd34-11e6-8902-610fe486791c+-++-+Betsy+DeVos%E2%80%99s+confirmation+hearing%2C+in+three+minutes&channel=wp+-+posttv&type=video&browser=mozilla&os=iphone&browserVersion=an+unknown+version&build=71482e9&webview=false&playerType=posttv-embed&flashVersion=0.0.0&url=https%3A%2F%2Fjs.washingtonpost.com%2Fvideo%2Fc%2Fembed%2F5f2d8e7c-dd34-11e6-8902-610fe486791c%3FembedContext%3Damp%26renderingMode%3Dhtml5%23amp%3D1&HTTP_REFERER=https%3A%2F%2Fwww-washingtonpost-com.cdn.ampproject.org%2Fv%2Fs%2Fwww.washingtonpost.com%2Famphtml%2Flocal%2Feducation%2Fsenators-to-scrutinize-betsy-devos-trumps-pick-for-education-secretary%2F2017%2F01%2F17%2F3a0e6168-da8f-11e6-9a36-1d296534b31e_story.html%3Famp_js_v%3D7&evtName=Document+Ready&evtType=event101&evtTime=1486443800846&video=post+originals%3Avideo+-+610fe486791c+-+1%2F17%2F2017+-+betsy+devos%E2%80%99s+confirmation+hearing%2C+in+three+minutes&videoId=5f2d8e7c-dd34-11e6-8902-610fe486791c&videoName=post+originals%3Avideo+-+610fe486791c+-+1%2F17%2F2017+-+betsy+devos%E2%80%99s+confirmation+hearing%2C+in+three+minutes&videoType=vod&videoSource=the+washington+post&section=post+originals&vendor=jw&offsetTop=&nthVideoOnPage=&xWpSplit=&thinkAdBlock=false&renderingMode=&_=1486443810369 HTTP/1.1
HTTPS?:yes
videotracker.washingtonpost.com

GET /wp-stat/advertising/pseudo-static/remote.html?1486153081489 HTTP/1.1
HTTPS?:yes
js.washingtonpost.com

GET /v1.0/loxodo/datapoint/saveAmp?org_id=wpniwashpostcom&site_id=www.washingtonpost.com&article_section=wp%2520-%2520%2Flocal%2Feducation&contentLoadTime=2147&domainLookupTime=83&domInteractiveTime=2146&pageDownloadTime=77&serverResponseTime=118&pageLoad=&timezone=300&timestamp=1486443798334&ampdocUrl=https%3A%2F%2Fwww-washingtonpost-com.cdn.ampproject.org%2Fv%2Fs%2Fwww.washingtonpost.com%2Famphtml%2Flocal%2Feducation%2Fsenators-to-scrutinize-betsy-devos-trumps-pick-for-education-secretary%2F2017%2F01%2F17%2F3a0e6168-da8f-11e6-9a36-1d296534b31e_story.html%3Famp_js_v%3D7&title=Betsy%20DeVos%2C%20Trump%E2%80%99s%20education%20pick%2C%20lauded%20as%20bold%20reformer%2C%20called%20unfit%20for%20job&canonicalUrl=https%3A%2F%2Fwww.washingtonpost.com%2Flocal%2Feducation%2Fsenators-to-scrutinize-betsy-devos-trumps-pick-for-education-secretary%2F2017%2F01%2F17%2F3a0e6168-da8f-11e6-9a36-1d296534b31e_story.html&screenWidth=414&screenHeight=736&referrer=&paywall=0 HTTP/1.1
HTTPS?:yes
api.arcpublishing.com

GET /ping?h=washingtonpost.com&p=%2Flocal%2Feducation%2Fsenators-to-scrutinize-betsy-devos-trumps-pick-for-education-secretary%2F2017%2F01%2F17%2F3a0e6168-da8f-11e6-9a36-1d296534b31e_story.html&u=eD08Wl0t0p59XnQg4ZtLqrOYHqWBjeyobEWOOR7SQWMfwJQ57dk_WK1Y3OU_PsjO&d=www.washingtonpost.com&g=19624&g0=local%2Clocal%20-%20education%2Carticle&g1=Emma%20Brown%2CDanielle%20Douglas-Gabriel%2CMoriah%20Balingit&g2=&g3=&g4=&c=120&x=1&y=8300&j=30&R=1&W=0&I=0&E=5&r=&t=6281eD08Wl0t0p59XnQg4ZtLqrOYHqWBjeyobEWOOR7SQWMfwJQ57dk_WK1Y3OU_PsjO&b=21828&i=Betsy%20DeVos%2C%20Trump%E2%80%99s%20education%20pick%2C%20lauded%20as%20bold%20reformer%2C%20called%20unfit%20for%20job&T=1486443857387&tz=300&C=2&_ HTTP/1.1
HTTPS?:yes
ping.chartbeat.net

GET /prod/naytev.min.js HTTP/1.1
HTTPS?:yes
naytev-embed.global.ssl.fastly.net

GET /metrics/?rum=%7B%22redt%22%3A0%2C%22nl%22%3A290%2C%22dns%22%3A0%2C%22tcp%22%3A0%2C%22rest%22%3A129%2C%22domt%22%3A8537%2C%22uplt%22%3A10404%2C%22url%22%3A%22https%3A%2F%2Fjs.washingtonpost.com%2Flocal%2Feducation%2Fsenators-to-scrutinize-betsy-devos-trumps-pick-for-education-secretary%2F2017%2F01%2F17%2F3a0e6168-da8f-11e6-9a36-1d296534b31e_story.html%3Fpwa%3Doff%26resType%3Dtracking%26tref%3Damphtml%23amp%3D1%22%2C%22site%22%3A%22js.washingtonpost.com%22%2C%22title%22%3A%22Betsy%20DeVos%2C%20Trump%E2%80%99s%20education%20pick%2C%20lauded%20as%20bold%20reformer%2C%20called%20unfit%20for%20job%20-%20The%20Washington%20Post%22%2C%22domn%22%3A72%2C%22jhs%22%3A29400000%2C%22fpt%22%3A0%2C%22section%22%3A%22local%22%2C%22cntt%22%3A%22article%22%7D&v=0.9&u=https%3A%2F%2Fjs.washingtonpost.com%2Flocal%2Feducation%2Fsenators-to-scrutinize-betsy-devos-trumps-pick-for-education-secretary%2F2017%2F01%2F17%2F3a0e6168-da8f-11e6-9a36-1d296534b31e_story.html%3Fpwa%3Doff%26resType%3Dtracking%26tref%3Damphtml&if= HTTP/1.1
HTTPS?:yes
rumds.wpdigital.net

GET /pwa/service-worker.js HTTP/1.1
HTTPS?:yes
www.washingtonpost.com

GET /instream/video/client.js HTTP/1.1
HTTPS?:yes
s0.2mdn.net

GET /video/resources/compact/template/posttv-external-video-template/styles/050e4bd796823b26ec0b0057b25fad1f.css?_=0299c0 HTTP/1.1
HTTPS?:yes
js.washingtonpost.com

GET /js/chartbeat_video.js HTTP/1.1
HTTPS?:yes
static.chartbeat.com

GET /video/resource/footjs-posttv-external-video-template-9eaee623.js?_=0299c0 HTTP/1.1
HTTPS?:yes
js.washingtonpost.com

GET /css?family=Open+Sans:300,400,600,700&subset=latin HTTP/1.1
HTTPS?:yes
fonts.googleapis.com

GET /wp-stat/analytics/main.js HTTP/1.1
HTTPS?:yes
js.washingtonpost.com

GET /preconnect.gif HTTP/1.1
HTTPS?:yes
cdn.ampproject.org

GET /pb/gr/c/tracking/rAr0er1jVmYO9q/load_immediately/f14a12c60d.js?_=41193 HTTP/1.1
HTTPS?:yes
js.washingtonpost.com

GET /b2?c1=2&c2=3005617&rn=0.9728959101298973&c8=Betsy%20DeVos%2C%20Trump%E2%80%99s%20education%20pick%2C%20lauded%20as%20bold%20reformer%2C%20called%20unfit%20for%20job&c7=https%3A%2F%2Fwww.washingtonpost.com%2Flocal%2Feducation%2Fsenators-to-scrutinize-betsy-devos-trumps-pick-for-education-secretary%2F2017%2F01%2F17%2F3a0e6168-da8f-11e6-9a36-1d296534b31e_story.html&c9=&cs_c7amp=https%3A%2F%2Fwww-washingtonpost-com.cdn.ampproject.org%2Fv%2Fs%2Fwww.washingtonpost.com%2Famphtml%2Flocal%2Feducation%2Fsenators-to-scrutinize-betsy-devos-trumps-pick-for-education-secretary%2F2017%2F01%2F17%2F3a0e6168-da8f-11e6-9a36-1d296534b31e_story.html%3Famp_js_v%3D7 HTTP/1.1
HTTPS?:yes
sb.scorecardresearch.com

GET /wp-apps/imrs.php?src=http://s3.amazonaws.com/posttv-thumbnails-prod/02-07-2017/t_1486431092040_name_20170120_trump_thumbnail.jpg&w=414&h=233 HTTP/1.1
HTTPS?:yes
img.washingtonpost.com

GET /video/resources/compact/type/posttv/footJS/75a1abd998fd07a35d383b10bc08781d.js?_=0299c0 HTTP/1.1
HTTPS?:yes
js.washingtonpost.com

GET /ping?h=video%40washingtonpost.com&g=19624&p=5f2d8e7c-dd34-11e6-8902-610fe486791c&i=Betsy%20DeVos%E2%80%99s%20confirmation%20hearing%2C%20in%20three%20minutes&g0=posttv&u=2KzyAzekj0Be1PkZ&t=4dv554OxX5DrC7FMDIez4QBGJsp&x=0&y=0&V=89&VS=JW&n=1&b=15459&r=https%3A%2F%2Fwww-washingtonpost-com.cdn.ampproject.org%2Fv%2Fs%2Fwww.washingtonpost.com%2Famphtml%2Flocal%2Feducation%2Fsenators-to-scrutinize-betsy-devos-trumps-pick-for-education-secretary%2F2017%2F01%2F17%2F3a0e6168-da8f-11e6-9a36-1d296534b31e_story.html%3Famp_js_v%3D7&_pu=NA&_pt=NA&_pv=&_vt=ct&_vs=s1&_vbr=-1&_vvs=60.072&_vpt=0&_vtn=%2F%2Fimg.washingtonpost.com%2Fwp-apps%2Fimrs.php%3Fsrc%3Dhttp%3A%2F%2Fs3.amazonaws.com%2Fposttv-thumbnails-prod%2F01-18-2017%2Ft_1484712594640_name_20170117_devos_thumbnail.jpg%26w%3D414%26h%3D233&_vaup=unkn&_vce=0&c=1&W=0&R=0&I=1&E=0&j=75&tz=300&_ HTTP/1.1
HTTPS?:yes
ping.chartbeat.net

GET /b?c1=2&c2=3005617&ns__t=1486443803701&ns_c=UTF-8&ns_if=1&cv=3.1m&c8=Betsy%20DeVos%E2%80%99s%20confirmation%20hearing%2C%20in%20three%20minutes%20-%20The%20Washington%20Post&c7=https%3A%2F%2Fjs.washingtonpost.com%2Fvideo%2Fc%2Fembed%2F5f2d8e7c-dd34-11e6-8902-610fe486791c%3FembedContext%3Damp%26renderingMode%3Dhtml5%23amp%3D1&c9=https%3A%2F%2Fwww-washingtonpost-com.cdn.ampproject.org%2Fv%2Fs%2Fwww.washingtonpost.com%2Famphtml%2Flocal%2Feducation%2Fsenators-to-scrutinize-betsy-devos-trumps-pick-for-education-secretary%2F2017%2F01%2F17%2F3a0e6168-da8f-11e6-9a36-1d296534b31e_story.html%3Famp_js_v%3D7 HTTP/1.1
HTTPS?:yes
sb.scorecardresearch.com

GET /wp-stat/advertising/pseudo-static/vidExclusions/vid_exclusions.js?_=71482e9 HTTP/1.1
HTTPS?:yes
js.washingtonpost.com

GET /video/resources/js/posttv/vendor/jw/skins/bekle.css HTTP/1.1
HTTPS?:yes
js.washingtonpost.com

GET /pwa/img/apple-touch-icon-76.png?_sw-precache=628f2fdb7be6500e262b463cb9d9e03f HTTP/1.1
HTTPS?:yes
www.washingtonpost.com

GET /video/resources/js/posttv/jwPlayer/jwPlayerWrapper.min.js?_=71482e9 HTTP/1.1
HTTPS?:yes
js.washingtonpost.com

GET /pwa/img/offline.png?_sw-precache=6a7a4d18aed7db3f2bf93e07a6d02f40 HTTP/1.1
HTTPS?:yes
www.washingtonpost.com

GET /pixel.gif?source=amp&confid=JWSW2rxX&_kpid=415dda7b-13ba-40f3-9a60-eb3ba310f160&_kcp_s=Washington%20Post%20Mobile%20Web&_kcp_sc=&_kcp_ssc=&_kcp_d=www.washingtonpost.com&_kpref_=&_kua_kx_amp_client_id=LySGDvnLaUalzE_9ELwLjJt6oUzjLxq9nH9px1oXzU1laebiPA73xc-QBwus11E_&_kua_kx_lang=en-us&_kua_kx_tech_browser_language=en-us&_kua_kx_tz=300&t_navigation_type=0&t_dns=83&t_tcp=116&t_http_request=118&t_http_response=77&t_content_ready=2147&t_window_load=&t_redirect=8&_kpa_author=emma_brown,danielle_douglas-gabriel,moriah_balingit&_kpa_aux=i8j,jel,q27,k66,tpe,a8t,82b,5c7,wkq,l3o,kxq,ovg,04r,yvu,9hp,470,r5x,rok,3cz,0s8,fzc,v57,dt5,ei3,wmp,o1b,iav,x6q,1wd,m1d,z9t,mhm,en5,jqm,3jl,ruq,kq7,cyb,8f3,eiz,8ls,j1l,oe1,5l0,27r,ydc,ks1,958,ch7,o95,ncw,4y6,8fb,xyt,ktt,3fv,w0e,8xg,6a0,1a5,k77,yzu,0sb,z94,jua,rw0,5l3,dpf,2io,27l,l7l,fdv,jqq,6zj,z0s,7gb,sns,mq0,tky,xzq,7ae,0ay,wtg,xvt,qe2,gd5,lmp,vjj,zhn,btb,w5s,5ex,stu,w4t,uma,vat,43c,pjj,n95,4yk,3g8,i6w,eqw,mza,7yu,h2r,gx0,ieb,zev,fbv,o6r,sch,gnp,02c,1dy,l7e,1o8,val,k9i,g45,fuf,xfu,ubv,1t5,zb1,81f,9xx,0cz,r6u,pvh,7aq,1jw,w0i,urk,q6w,ebh,qoj,5k4,6p9,g1f,ijt,k5b,tc8,ga9,1b0,hf0,ehv,3ov,j6y,0pa,48r,3rj,xym,oji,r65,ngs,fga,7nc,5tv,zwn,yer,lv2,2o1,kxj,mm7,n20,0yz,fvn,c2u,ugg,y4j,a4m,lik,jqs,34n,lf3,plt,75m,m42,14h,r8j,r9g,q07,bxn,1s9,kre,8z8,8zz,33h,7wr,7rl,070&_kpa_blogname=None&_kpa_section=local&_kpa_subsection=education&_kpa_topics= HTTP/1.1
HTTPS?:yes
beacon.krxd.net

GET /r/s/css.washingtonpost.com/wp-stat/wapo-sass-assets/fonts/Postoni-Standard-Bold/PostoniStandard-Bold.ttf HTTP/1.1
HTTPS?:yes
css-washingtonpost-com.cdn.ampproject.org

GET /external_hosted/modernizr/modernizr.js HTTP/1.1
HTTPS?:yes
www.gstatic.com

GET /ping?h=washingtonpost.com&p=%2Flocal%2Feducation%2Fsenators-to-scrutinize-betsy-devos-trumps-pick-for-education-secretary%2F2017%2F01%2F17%2F3a0e6168-da8f-11e6-9a36-1d296534b31e_story.html&u=eD08Wl0t0p59XnQg4ZtLqrOYHqWBjeyobEWOOR7SQWMfwJQ57dk_WK1Y3OU_PsjO&d=www.washingtonpost.com&g=19624&g0=local%2Clocal%20-%20education%2Carticle&g1=Emma%20Brown%2CDanielle%20Douglas-Gabriel%2CMoriah%20Balingit&g2=&g3=&g4=&c=120&x=1&y=8300&j=30&R=1&W=0&I=0&E=5&r=&t=6281eD08Wl0t0p59XnQg4ZtLqrOYHqWBjeyobEWOOR7SQWMfwJQ57dk_WK1Y3OU_PsjO&b=21828&i=Betsy%20DeVos%2C%20Trump%E2%80%99s%20education%20pick%2C%20lauded%20as%20bold%20reformer%2C%20called%20unfit%20for%20job&T=1486443887385&tz=300&C=2&_ HTTP/1.1
HTTPS?:yes
ping.chartbeat.net

GET /video/resources/js/posttv/vendor/streamsense.min.js?_=71482e9 HTTP/1.1
HTTPS?:yes
js.washingtonpost.com

GET /1h/twp-global.js?cache=201506091547 HTTP/1.1
HTTPS?:yes
js.washingtonpost.com

GET /static/glade.js HTTP/1.1
HTTPS?:yes
securepubads.g.doubleclick.net

GET /pwa/index.html?_sw-precache=b86016ba209f651366b12cf86c182fcd HTTP/1.1
HTTPS?:yes
www.washingtonpost.com

GET /video/resources/js/posttv/vendor/jw/jw-icons.woff HTTP/1.1
HTTPS?:yes
js.washingtonpost.com

GET /pixel.gif?source=amp&confid=JWSW2rxX&_kpid=415dda7b-13ba-40f3-9a60-eb3ba310f160&_kcp_s=Washington%20Post%20Mobile%20Web&_kcp_sc=&_kcp_ssc=&_kcp_d=www.washingtonpost.com&_kpref_=&_kua_kx_amp_client_id=LySGDvnLaUalzE_9ELwLjJt6oUzjLxq9nH9px1oXzU1laebiPA73xc-QBwus11E_&_kua_kx_lang=en-us&_kua_kx_tech_browser_language=en-us&_kua_kx_tz=300&t_navigation_type=0&t_dns=83&t_tcp=116&t_http_request=118&t_http_response=77&t_content_ready=2147&t_window_load=&t_redirect=8&_kpa_author=emma_brown,danielle_douglas-gabriel,moriah_balingit&_kpa_aux=i8j,jel,q27,k66,tpe,a8t,82b,5c7,wkq,l3o,kxq,ovg,04r,yvu,9hp,470,r5x,rok,3cz,0s8,fzc,v57,dt5,ei3,wmp,o1b,iav,x6q,1wd,m1d,z9t,mhm,en5,jqm,3jl,ruq,kq7,cyb,8f3,eiz,8ls,j1l,oe1,5l0,27r,ydc,ks1,958,ch7,o95,ncw,4y6,8fb,xyt,ktt,3fv,w0e,8xg,6a0,1a5,k77,yzu,0sb,z94,jua,rw0,5l3,dpf,2io,27l,l7l,fdv,jqq,6zj,z0s,7gb,sns,mq0,tky,xzq,7ae,0ay,wtg,xvt,qe2,gd5,lmp,vjj,zhn,btb,w5s,5ex,stu,w4t,uma,vat,43c,pjj,n95,4yk,3g8,i6w,eqw,mza,7yu,h2r,gx0,ieb,zev,fbv,o6r,sch,gnp,02c,1dy,l7e,1o8,val,k9i,g45,fuf,xfu,ubv,1t5,zb1,81f,9xx,0cz,r6u,pvh,7aq,1jw,w0i,urk,q6w,ebh,qoj,5k4,6p9,g1f,ijt,k5b,tc8,ga9,1b0,hf0,ehv,3ov,j6y,0pa,48r,3rj,xym,oji,r65,ngs,fga,7nc,5tv,zwn,yer,lv2,2o1,kxj,mm7,n20,0yz,fvn,c2u,ugg,y4j,a4m,lik,jqs,34n,lf3,plt,75m,m42,14h,r8j,r9g,q07,bxn,1s9,kre,8z8,8zz,33h,7wr,7rl,070&_kpa_blogname=None&_kpa_section=local&_kpa_subsection=education&_kpa_topics= HTTP/1.1
HTTPS?:yes
beacon.krxd.net

GET /pwa/img/launcher-icon-2x.png?_sw-precache=e1ee2f7b3675894c1e85be32692c09b1 HTTP/1.1
HTTPS?:yes
www.washingtonpost.com

GET /index.html?callback=jQuery182004589194259501328_1486443799034&sessionId=%5BCS%5Dv1%7C2C4CAA8E85031625-40001182000002FB%5BCE%5D&page=posttv%3Avideo+-+5f2d8e7c-dd34-11e6-8902-610fe486791c+-++-+Betsy+DeVos%E2%80%99s+confirmation+hearing%2C+in+three+minutes&channel=wp+-+posttv&type=video&browser=mozilla&os=iphone&browserVersion=an+unknown+version&build=71482e9&webview=false&playerType=posttv-embed&flashVersion=0.0.0&url=https%3A%2F%2Fjs.washingtonpost.com%2Fvideo%2Fc%2Fembed%2F5f2d8e7c-dd34-11e6-8902-610fe486791c%3FembedContext%3Damp%26renderingMode%3Dhtml5%23amp%3D1&HTTP_REFERER=https%3A%2F%2Fwww-washingtonpost-com.cdn.ampproject.org%2Fv%2Fs%2Fwww.washingtonpost.com%2Famphtml%2Flocal%2Feducation%2Fsenators-to-scrutinize-betsy-devos-trumps-pick-for-education-secretary%2F2017%2F01%2F17%2F3a0e6168-da8f-11e6-9a36-1d296534b31e_story.html%3Famp_js_v%3D7&evtName=Page+onload&evtType=event102&evtTime=1486443810276&video=post+originals%3Avideo+-+610fe486791c+-+1%2F17%2F2017+-+betsy+devos%E2%80%99s+confirmation+hearing%2C+in+three+minutes&videoId=5f2d8e7c-dd34-11e6-8902-610fe486791c&videoName=post+originals%3Avideo+-+610fe486791c+-+1%2F17%2F2017+-+betsy+devos%E2%80%99s+confirmation+hearing%2C+in+three+minutes&videoType=vod&videoSource=the+washington+post&section=post+originals&vendor=jw&offsetTop=&nthVideoOnPage=&xWpSplit=&thinkAdBlock=false&renderingMode=&_=1486443810426 HTTP/1.1
HTTPS?:yes
videotracker.washingtonpost.com

GET /pwa/service-worker-registration.js HTTP/1.1
HTTPS?:yes
www.washingtonpost.com

GET /video/resource/style-posttv-external-video-template-9eaee623.css?_=0299c0 HTTP/1.1
HTTPS?:yes
js.washingtonpost.com

GET /vi/r8cEY12hgGg/hqdefault.jpg HTTP/1.1
HTTPS?:yes
i.ytimg.com

GET /ii/w560/s/img.washingtonpost.com/pb/resources/img/thewashingtonpost-white-2x.png HTTP/1.1
HTTPS?:yes
img-washingtonpost-com.cdn.ampproject.org

GET /index.html?callback=jQuery182004589194259501328_1486443799032&sessionId=%5BCS%5Dv1%7C2C4CAA8E85031625-40001182000002FB%5BCE%5D&page=posttv%3Avideo+-+5f2d8e7c-dd34-11e6-8902-610fe486791c+-++-+Betsy+DeVos%E2%80%99s+confirmation+hearing%2C+in+three+minutes&channel=wp+-+posttv&type=video&browser=mozilla&os=iphone&browserVersion=an+unknown+version&build=71482e9&webview=false&playerType=posttv-embed&flashVersion=0.0.0&url=https%3A%2F%2Fjs.washingtonpost.com%2Fvideo%2Fc%2Fembed%2F5f2d8e7c-dd34-11e6-8902-610fe486791c%3FembedContext%3Damp%26renderingMode%3Dhtml5%23amp%3D1&HTTP_REFERER=https%3A%2F%2Fwww-washingtonpost-com.cdn.ampproject.org%2Fv%2Fs%2Fwww.washingtonpost.com%2Famphtml%2Flocal%2Feducation%2Fsenators-to-scrutinize-betsy-devos-trumps-pick-for-education-secretary%2F2017%2F01%2F17%2F3a0e6168-da8f-11e6-9a36-1d296534b31e_story.html%3Famp_js_v%3D7&evtName=Page+Load&evtType=event1&evtTime=1486443799080&video=post+originals%3Avideo+-+610fe486791c+-+1%2F17%2F2017+-+betsy+devos%E2%80%99s+confirmation+hearing%2C+in+three+minutes&videoId=5f2d8e7c-dd34-11e6-8902-610fe486791c&videoName=post+originals%3Avideo+-+610fe486791c+-+1%2F17%2F2017+-+betsy+devos%E2%80%99s+confirmation+hearing%2C+in+three+minutes&videoType=vod&videoSource=the+washington+post&section=post+originals&vendor=jw&offsetTop=&nthVideoOnPage=&xWpSplit=&thinkAdBlock=false&renderingMode=&_=1486443810326 HTTP/1.1
HTTPS?:yes
videotracker.washingtonpost.com

GET /wp-stat/advertising/pseudo-static/remote.html?1486153081489 HTTP/1.1
HTTPS?:yes
js.washingtonpost.com

GET /player/v/7.7.2/related.js HTTP/1.1
HTTPS?:yes
ssl.p.jwpcdn.com

GET /safeframe/1-0-5/html/container.html?n=2 HTTP/1.1
HTTPS?:yes
tpc.googlesyndication.com

GET /pwa/img/launcher-icon-3x.png?_sw-precache=9080b362738761788bb05597d09e1363 HTTP/1.1
HTTPS?:yes
www.washingtonpost.com

GET /instream/ad_status.js HTTP/1.1
HTTPS?:yes
static.doubleclick.net

GET /wp-apps/imrs.php?src=http%3A%2F%2Fs3.amazonaws.com%2Fposttv-thumbnails-prod%2F01-18-2017%2Ft_1484712594640_name_20170117_devos_thumbnail.jpg&w=414 HTTP/1.1
HTTPS?:yes
img.washingtonpost.com

GET /embed/r8cEY12hgGg?rel=0&showinfo=0&modestbranding=1&theme=light&autohide=1&html5=1 HTTP/1.1
HTTPS?:yes
www.youtube.com

GET /wp-stat/advertising/pseudo-static/keyvalues.min.js HTTP/1.1
HTTPS?:yes
www.washingtonpost.com

GET /video/resources/templates/posttv/posttv-video-promo.html HTTP/1.1
HTTPS?:yes
js.washingtonpost.com

GET /pwa/img/launcher-icon-4x.png?_sw-precache=59b97d1d9ac6f8e0b07a1c26aaf98769 HTTP/1.1
HTTPS?:yes
www.washingtonpost.com

GET /amp/v1/remote.min.js HTTP/1.1
HTTPS?:yes
cdn.krxd.net

GET /crx/blobs/QgAAAC6zw0qH2DJtnXe8Z7rUJP2RBPFos_iUFZeK1pkUEMCZdHYj8p7a_Ua08hBbycrdxjgPSh113R5YSvKPiELGM4E_deYYnwGnEukHKvi9QnblAMZSmuWa83CIMhfp_9QOzF2YD0id0yIHiA/extension_1_0_0_1.crx HTTP/1.1
HTTPS?:no
redirector.gvt1.com

GET /r/collect?v=1&aip=1&t=dc&_r=3&tid=UA-26908291-1&cid=54643009.1486443700&jid=1676081941&_v=5.6.7&z=422998493 HTTP/1.1
HTTPS?:yes
stats.g.doubleclick.net

GET /v/s/www.washingtonpost.com/amphtml/local/education/senators-to-scrutinize-betsy-devos-trumps-pick-for-education-secretary/2017/01/17/3a0e6168-da8f-11e6-9a36-1d296534b31e_story.html?amp_js_v=7 HTTP/1.1
HTTPS?:yes
www-washingtonpost-com.cdn.ampproject.org

GET /pwa/img/apple-touch-icon-152.png?_sw-precache=56e6428060f3ca86536343d3abb50169 HTTP/1.1
HTTPS?:yes
www.washingtonpost.com

GET /controltag/amp/JWSW2rxX.json?__amp_source_origin=https%3A%2F%2Fwww.washingtonpost.com HTTP/1.1
HTTPS?:yes
cdn.krxd.net

GET /r/s/css.washingtonpost.com/wp-stat/wapo-sass-assets/fonts/Font-Awesome/fontawesome-webfont.woff HTTP/1.1
HTTPS?:yes
css-washingtonpost-com.cdn.ampproject.org

GET /pb/resources/css/latest/headerfonts.latest.css?_=201701310959PST HTTP/1.1
HTTPS?:yes
www.washingtonpost.com

GET /ping?h=video%40washingtonpost.com&g=19624&p=5f2d8e7c-dd34-11e6-8902-610fe486791c&i=Betsy%20DeVos%E2%80%99s%20confirmation%20hearing%2C%20in%20three%20minutes&g0=posttv&u=2KzyAzekj0Be1PkZ&t=4dv554OxX5DrC7FMDIez4QBGJsp&x=0&y=0&V=89&VS=JW&n=1&b=15459&r=https%3A%2F%2Fwww-washingtonpost-com.cdn.ampproject.org%2Fv%2Fs%2Fwww.washingtonpost.com%2Famphtml%2Flocal%2Feducation%2Fsenators-to-scrutinize-betsy-devos-trumps-pick-for-education-secretary%2F2017%2F01%2F17%2F3a0e6168-da8f-11e6-9a36-1d296534b31e_story.html%3Famp_js_v%3D7&_pu=NA&_pt=NA&_pv=&_vt=ct&_vs=s1&_vbr=-1&_vvs=0.072&_vpt=0&_vtn=%2F%2Fimg.washingtonpost.com%2Fwp-apps%2Fimrs.php%3Fsrc%3Dhttp%3A%2F%2Fs3.amazonaws.com%2Fposttv-thumbnails-prod%2F01-18-2017%2Ft_1484712594640_name_20170117_devos_thumbnail.jpg%26w%3D414%26h%3D233&_vaup=unkn&_vce=0&c=0&W=0&R=0&I=1&E=0&j=75&tz=300&_ HTTP/1.1
HTTPS?:yes
ping.chartbeat.net

GET /ping?h=washingtonpost.com&p=%2Flocal%2Feducation%2Fsenators-to-scrutinize-betsy-devos-trumps-pick-for-education-secretary%2F2017%2F01%2F17%2F3a0e6168-da8f-11e6-9a36-1d296534b31e_story.html&u=eD08Wl0t0p59XnQg4ZtLqrOYHqWBjeyobEWOOR7SQWMfwJQ57dk_WK1Y3OU_PsjO&d=www.washingtonpost.com&g=19624&g0=local%2Clocal%20-%20education%2Carticle&g1=Emma%20Brown%2CDanielle%20Douglas-Gabriel%2CMoriah%20Balingit&g2=&g3=&g4=&c=120&x=1&y=8300&j=30&R=1&W=0&I=0&E=5&r=&t=6281eD08Wl0t0p59XnQg4ZtLqrOYHqWBjeyobEWOOR7SQWMfwJQ57dk_WK1Y3OU_PsjO&b=21828&i=Betsy%20DeVos%2C%20Trump%E2%80%99s%20education%20pick%2C%20lauded%20as%20bold%20reformer%2C%20called%20unfit%20for%20job&T=1486443842401&tz=300&C=2&_ HTTP/1.1
HTTPS?:yes
ping.chartbeat.net

POST /?pworiginres=google-amp-pingback&__amp_source_origin=https%3A%2F%2Fwww.washingtonpost.com HTTP/1.1
HTTPS?:yes
pwapi.washingtonpost.com

GET /pwa/img/apple-touch-icon-180.png?_sw-precache=e2fd026c0dca549baa76f6b2970caa17 HTTP/1.1
HTTPS?:yes
www.washingtonpost.com

GET /s/opensans/v13/MTP_ySUJH_bn48VBG8sNSugdm0LZdjqr5-oayXSOefg.woff2 HTTP/1.1
HTTPS?:yes
fonts.gstatic.com

GET /player/v/7.7.2/googima.js HTTP/1.1
HTTPS?:yes
ssl.p.jwpcdn.com

GET /player/v/7.7.2/jwpsrv.js HTTP/1.1
HTTPS?:yes
ssl.p.jwpcdn.com

GET /i/s/img.washingtonpost.com/wp-apps/imrs.php?src=http://s3.amazonaws.com/posttv-thumbnails-prod/01-18-2017/t_1484712594640_name_20170117_devos_thumbnail.jpg&w=480&h=250 HTTP/1.1
HTTPS?:yes
img-washingtonpost-com.cdn.ampproject.org

GET /pb/gr/c/javascript/r0TEMqBRrcpdrp/modal-css/938c258067.css?_=00223 HTTP/1.1
HTTPS?:yes
www.washingtonpost.com

GET /wp-stat/otto/js/mbox.js HTTP/1.1
HTTPS?:yes
www.washingtonpost.com

GET /ping?h=washingtonpost.com&p=%2Flocal%2Feducation%2Fsenators-to-scrutinize-betsy-devos-trumps-pick-for-education-secretary%2F2017%2F01%2F17%2F3a0e6168-da8f-11e6-9a36-1d296534b31e_story.html&u=eD08Wl0t0p59XnQg4ZtLqrOYHqWBjeyobEWOOR7SQWMfwJQ57dk_WK1Y3OU_PsjO&d=www.washingtonpost.com&g=19624&g0=local%2Clocal%20-%20education%2Carticle&g1=Emma%20Brown%2CDanielle%20Douglas-Gabriel%2CMoriah%20Balingit&g2=&g3=&g4=&c=120&x=1&y=8550&j=30&R=1&W=0&I=0&E=3&r=&t=6281eD08Wl0t0p59XnQg4ZtLqrOYHqWBjeyobEWOOR7SQWMfwJQ57dk_WK1Y3OU_PsjO&b=&i=Betsy%20DeVos%2C%20Trump%E2%80%99s%20education%20pick%2C%20lauded%20as%20bold%20reformer%2C%20called%20unfit%20for%20job&T=1486443797607&tz=300&C=2&_ HTTP/1.1
HTTPS?:yes
ping.chartbeat.net

GET /video/resources/compact/template/posttv-external-video-template/javascripts/8bc136776d69f42538819b6c1d1ed04d.js?_=0299c0 HTTP/1.1
HTTPS?:yes
js.washingtonpost.com

GET /time/1/current?cup2key=1:3869613470&cup2hreq=e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 HTTP/1.1
HTTPS?:no
clients2.google.com

GET /video/resources/js/posttv/vendor/jw/jwplayer.js?_=71482e9 HTTP/1.1
HTTPS?:yes
js.washingtonpost.com

GET /video/resources/compact/type/posttv/headJS/9b0e3704a944c3c19e0bd6a2d294b833.js?_=0299c0 HTTP/1.1
HTTPS?:yes
js.washingtonpost.com

GET /pwa/img/8x5.png?_sw-precache=82329251d2f7cdeaa00bb885341b9849 HTTP/1.1
HTTPS?:yes
www.washingtonpost.com

GET /index.html?callback=jQuery182004589194259501328_1486443799032&sessionId=&page=posttv%3Avideo+-+5f2d8e7c-dd34-11e6-8902-610fe486791c+-++-+Betsy+DeVos%E2%80%99s+confirmation+hearing%2C+in+three+minutes&channel=wp+-+posttv&type=video&browser=mozilla&os=iphone&browserVersion=an+unknown+version&build=71482e9&webview=false&playerType=posttv-embed&flashVersion=0.0.0&url=https%3A%2F%2Fjs.washingtonpost.com%2Fvideo%2Fc%2Fembed%2F5f2d8e7c-dd34-11e6-8902-610fe486791c%3FembedContext%3Damp%26renderingMode%3Dhtml5%23amp%3D1&HTTP_REFERER=https%3A%2F%2Fwww-washingtonpost-com.cdn.ampproject.org%2Fv%2Fs%2Fwww.washingtonpost.com%2Famphtml%2Flocal%2Feducation%2Fsenators-to-scrutinize-betsy-devos-trumps-pick-for-education-secretary%2F2017%2F01%2F17%2F3a0e6168-da8f-11e6-9a36-1d296534b31e_story.html%3Famp_js_v%3D7&evtName=PostTV+JavaScript+Error&evtType=event99&evtTime=1486443805148&video=post+originals%3Avideo+-+610fe486791c+-+1%2F17%2F2017+-+betsy+devos%E2%80%99s+confirmation+hearing%2C+in+three+minutes&videoId=5f2d8e7c-dd34-11e6-8902-610fe486791c&videoName=post+originals%3Avideo+-+610fe486791c+-+1%2F17%2F2017+-+betsy+devos%E2%80%99s+confirmation+hearing%2C+in+three+minutes&videoType=vod&videoSource=the+washington+post&section=post+originals&vendor=jw&offsetTop=&nthVideoOnPage=&xWpSplit=&thinkAdBlock=false&renderingMode=&errorCode=ptv_globalJsError&errorText=JavaScript+error%3A+Script+error.+on+line+0+for+&errorMsg=Script+error.&errorLineNum=0&errorUrl=&_=1486443805172 HTTP/1.1
HTTPS?:yes
videotracker.washingtonpost.com

GET /video/resources/assets/fonts/fontawesome/3.2.1/font/fontawesome-webfont.woff?v=3.2.1 HTTP/1.1
HTTPS?:yes
js.washingtonpost.com

GET /safebrowsing/csd/client_model_v5_ext_variation_0.pb HTTP/1.1
HTTPS?:yes
ssl.gstatic.com

GET /pb/gr/c/javascript/r0TEMqBRrcpdrp/jquery-cookie/4cc3c1bef0.js?_=adc46 HTTP/1.1
HTTPS?:yes
www.washingtonpost.com

GET /translate_a/l?client=chrome&hl=en&key=AIzaSyDGQzx0c0ptZVDriLi9Wblo2voeLnmPq-o&alpha=1 HTTP/1.1
HTTPS?:yes
translate.googleapis.com

GET /video/c/embed/5f2d8e7c-dd34-11e6-8902-610fe486791c?renderingMode=html5&embedContext=amp HTTP/1.1
HTTPS?:yes
js.washingtonpost.com

GET /pwa/js/app.js?_sw-precache=b8319fed9611a2aaad71257de34f6d04 HTTP/1.1
HTTPS?:yes
www.washingtonpost.com

GET /wp-stat/advertising/pseudo-static/identity-retargeting.js HTTP/1.1
HTTPS?:yes
www.washingtonpost.com

GET /pwa/css/fonts/PostoniStandard-Bold.ttf?_sw-precache=3010601a279fde4c9d9bd770b8633cba HTTP/1.1
HTTPS?:yes
www.washingtonpost.com

GET /pb/gr/c/javascript/r0TEMqBRrcpdrp/wapo-production/8f8c39c9d8.js?_=da70a HTTP/1.1
HTTPS?:yes
www.washingtonpost.com

GET /video/endscreen?permaLinkUrl=http%3A%2F%2Fwww.washingtonpost.com%2Fvideo%2Fpolitics%2Fbetsy-devoss-confirmation-hearing-in-three-minutes%2F2017%2F01%2F17%2F5f2d8e7c-dd34-11e6-8902-610fe486791c_video.html&cb=cb_5f2d8e7cdd3411e68902610fe486791c&resType=jsonp HTTP/1.1
HTTPS?:yes
js.washingtonpost.com

GET /pb/gr/c/javascript/r0TEMqBRrcpdrp/identity-management/a925dd0217.js?_=e997e HTTP/1.1
HTTPS?:yes
www.washingtonpost.com

GET /pb/gr/c/javascript/r0TEMqBRrcpdrp/conf-production/b5411285f6.js?_=3f62d HTTP/1.1
HTTPS?:yes
www.washingtonpost.com

GET /s/opensans/v13/k3k702ZOKiLJc3WVjuplzOgdm0LZdjqr5-oayXSOefg.woff2 HTTP/1.1
HTTPS?:yes
fonts.gstatic.com

GET /b/ss/wpniwashpostcom/1/H.24.2/s36244844516873?AQB=1&ndh=1&t=7%2F1%2F2017%200%3A3%3A24%202%20300&ns=wpni&pageName=local%3Aarticle%20-%201d296534b31e%20-%2020170117%20-%20senators-to-scrutinize-betsy-devos-trumps-pick-for-education-secretary&g=https%3A%2F%2Fjs.washingtonpost.com%2Flocal%2Feducation%2Fsenators-to-scrutinize-betsy-devos-trumps-pick-for-education-secretary%2F2017%2F01%2F17%2F3a0e6168-da8f-11e6-9a36-1d296534b31e_story.html%3Fpwa%3Doff%26resType%3Dtracking%26tref%3Damphtml%23amp%3D1&r=https%3A%2F%2Fwww-washingtonpost-com.cdn.ampproject.org%2Fv%2Fs%2Fwww.washingtonpost.com%2Famphtml%2Flocal%2Feducation%2Fsenators-to-scrutinize-betsy-devos-trumps-pick-for-education-secretary%2F2017%2F01%2F17%2F3a0e6168-da8f-11e6-9a36-1d296534b31e_story.html%3Famp_js_v%3D7&cc=USD&ch=wp%20-%20local&server=washingtonpost.com&events=event1%2Cevent105&v1=local%3Aarticle%20-%201d296534b31e%20-%2020170117%20-%20senators-to-scrutinize-betsy-devos-trumps-pick-for-education-secretary&c2=wp%20-%20local%20-%20education&v2=wp%20-%20local&c3=article&c4=the%20washington%20post&c5=emma%20brown%3B%20danielle%20douglas-gabriel%3B%20moriah%20balingit&c8=Tuesday&v8=emma%20brown%3B%20danielle%20douglas-gabriel%3B%20moriah%20balingit&c9=12%3A00AM&c10=Weekday&c12=3a0e6168-da8f-11e6-9a36-1d296534b31e&c13=3a0e6168-da8f-11e6-9a36-1d296534b31e%20-%20Betsy%20DeVos%2C%20Trump%E2%80%99s%20education%20pick%2C%20lauded%20as%20bold%20reformer%2C%20called%20unfit%20for%20job&v14=New&v15=First%20Visit&v16=1&c17=First%20Visit&v17=article&c18=New&v18=article&c23=local%7Ceducation%7Carticle&v28=notblocked&v31=desktop&c32=video%20recommendation%20-%20recipe%204&c33=anonymous&v33=anonymous&c34=News&c35=www-washingtonpost-com.cdn.ampproject.org&v35=www-washingtonpost-com.cdn.ampproject.org&c37=anonymous&c39=%2Flocal%2Feducation&v39=portrait&c40=Education&c51=entry%3Ewp%20-%20local&c52=unknown&v57=none&c58=amphtml&v58=amphtml&c61=0%7C0&c62=https&v62=logged%20out&c63=notblocked&c70=pagebuilder&v70=pagebuilder&c73=4477478732123-1486443803902&v73=.5bb9fb1aacdf&h1=local%7Ceducation%7Carticle&s=414x736&c=24&j=1.6&v=N&k=Y&bw=1&bh=1&AQE=1 HTTP/1.1
HTTPS?:yes
smetrics.washingtonpost.com

POST /r/collect?v=1&_v=a1&ds=AMP&aip=true&_s=1&dt=Betsy%20DeVos%2C%20Trump%E2%80%99s%20education%20pick%2C%20lauded%20as%20bold%20reformer%2C%20called%20unfit%20for%20job&sr=414x736&_utmht=1486443797563&cid=6K3i7ywAfTF-jHZNU7euJgFTyXig85WdjB-ZGnICpO8nukYcC0G04laCNsvS6ixy&tid=UA-50597120-4&dl=https%3A%2F%2Fwww.washingtonpost.com%2Famphtml%2Flocal%2Feducation%2Fsenators-to-scrutinize-betsy-devos-trumps-pick-for-education-secretary%2F2017%2F01%2F17%2F3a0e6168-da8f-11e6-9a36-1d296534b31e_story.html&dr=&sd=24&ul=en-us&de=UTF-8&t=pageview&jid=0.8073477340701778&_r=1&a=6281&z=0.9096961716069438 HTTP/1.1
HTTPS?:yes
www.google-analytics.com

GET /wp-stat/analytics/main.js?token=201701310959PST HTTP/1.1
HTTPS?:yes
js.washingtonpost.com

GET /pwa/css/fonts/Franklin-ITC-Pro-Light.ttf?_sw-precache=32a17f5e7704aa69e28d69fe896a5194 HTTP/1.1
HTTPS?:yes
www.washingtonpost.com

GET /embed/rEnw_G3X8G0?rel=0&showinfo=0&modestbranding=1&theme=light&autohide=1&html5=1 HTTP/1.1
HTTPS?:yes
www.youtube.com

GET /video/resource/instancejs-posttv-external-video-template-9eaee623.js?_=0299c0 HTTP/1.1
HTTPS?:yes
js.washingtonpost.com

I cannot find a corresponding response for the initial url. As with Keith, i cannot reproduce this behavior here, i created recordings and replay works fine with mobile emulation. I begin to think it has something todo with quic, as the first request might be a quic response.

worenga commented 7 years ago

The recording that i did myself however contains

GET /amp/s/www.washingtonpost.com/amphtml/local/education/senators-to-scrutinize-betsy-devos-trumps-pick-for-education-secretary/2017/01/17/3a0e6168-da8f-11e6-9a36-1d296534b31e_story.html?espv=2 HTTP/1.1
HTTPS?:yes
www.google.com

This is weird. Can you verify that you in fact use a fresh browser instance with cold cache?

akiraTao commented 7 years ago

I cleared my cache contents and recorded the web pages. Moreover, I used a python script taking record folder as an input to see what on earth had been successfully recorded, and I found that all files with http protocol had been recorded, but that with quic were not. That's possibly what is leading to the issue. Is it possible to solve that? Thanks.

worenga commented 7 years ago

AFAIK Mahimahi only records HTTP1/1 over TCP. If this is an option you can use --disable-quic in chrome. I am still confused though since i was able to create a recording for that page without disabling QUIC.

akiraTao commented 7 years ago

But I'm not saying I want to disable quic, if possible I want to be able to record both http1/1 and quic since amp pages contain both. So you mean you can replay the amp page even without recording quic?

worenga commented 7 years ago

1.) Mahimahi does neither support capturing nor replaying QUIC

2.) I do not believe this issue is related to QUIC at all because Keith and I were able to perform recordings of the page. As well as replay it, even without explicit saying --disable-quic.

akiraTao commented 7 years ago

Although --disable-quic worked, I'm still wondering why you could replay amp pages without disabling QUIC.