New issue
Advanced search Search tips
Note: Color blocks (like or ) mean that a user may not be available. Tooltip shows the reason.

Issue 768906 link

Starred by 10 users

Issue metadata

Status: Duplicate
Merged: issue 766715
Owner:
Last visit > 30 days ago
Closed: Nov 2017
Cc:
Components:
EstimatedDays: ----
NextAction: ----
OS: ----
Pri: 3
Type: Bug


Participants' hotlists:
Hotlist-1


Sign in to add a comment

Cannot see "form data" for some form post urls in Network tab under headers sub-tab

Reported by abhilash...@gmail.com, Sep 26 2017

Issue description

Chrome Version       : Version 61.0.3163.100 (Official Build) (64-bit)
URLs (if applicable) : www.att.com
Other browsers tested:
  Add OK or FAIL, along with the version, after other browsers where you
have tested this issue:
     Safari:NA
    Firefox:tested with HTTP fox addon, works
         IE:NA

What steps will reproduce the problem?
Please go to developer tools and check preserve log to capture the requests and proceed with following steps:
(1)Go to https://www.att.com/ and click login on top right corner.
(2)Enter some dummy credentials and click login button.
(3) Check the form post request to **.att.com/commonLogin/igate_wam/multiLogin.do, form data in Headers sub-tab under Network tab.

What is the expected result?
Form data entered in step 2 should be visible in headers tab

What happens instead?
Cannot see form data

Attaching screenshots of chrome and firefox. In firefox tested with httpfox addon where i can see form post data @URL : **/commonLogin/igate_wam/multiLogin.do
 
FormDataUna.JPG
119 KB View Download
FirefoxWithHttpfoxAddon.JPG
202 KB View Download
Labels: Needs-Triage-M61
I'm too facing the same issue in chrome 61.0.3163.100 (OS X - 10.12.6)
Basically our page redirects (302) after POST and couldn't see form data in the headers whereas it works fine in Firefox 55.03 (shows in params tab)
Cc: pbomm...@chromium.org
Components: Platform>DevTools
Labels: TE-NeedsTriageFromMTV
Unable to triage this issue from TE as there is no access for www.att.com in India, hence adding 
TE-NeedsTriageFromMTV label for further triage

Could someone from MTV team please take a look into this issue.

Thanks..!!

Comment 4 by alph@chromium.org, Oct 10 2017

Components: -Platform>DevTools Platform>DevTools>Network
Owner: allada@chromium.org
Status: Assigned (was: Unconfirmed)
Seeing the same issue, it appears to happen on any page that redirects (302) after form data is POSTed.

Using Version 61.0.3163.100 (Official Build) (64-bit) on Mac OS X 10.12.6
Same issue in version 62.0.3202.62 

Also, the POST request that triggers a 302 redirect used to persist in the log until the next page navigation, even when preserve log was switched off. This was a very useful feature!
Can we get that back too?
Here is a simple nodejs server that will show the issue. Just turn it on and go to localhost:8080.
The form data should be "something=10"

var http = require('http');
var server = http.createServer(function(req, res){
    console.log(req.method, req.url);
    if(req.method == 'POST'){
        res.writeHead(302, { 'Location': '/elsewhere/' });
    } else if (req.url.match(/favicon/)){
        res.writeHead(404);
    } else if(!req.url.match(/elsewhere/g)) {
        res.write('<html><form action="/elsewhere/" method="post">' +
                '<input name="something" value="10"/><br>' +
                '<button>Post!</button>' +
                '</form></html>');
    }
    res.end('');
});
server.listen(8080);
Any update on this ? You don't need access to att.com try checking any 302 POST request as many said.

Comment 9 by i...@franky.ws, Nov 7 2017

Any update on this ?
you do not need access to att.com or to the internet at all.
run the attached nodejs script and follow the instructions on the screen to reproduce the bug.
postRedirect.js
1.8 KB View Download
Mergedinto: 766715
Status: Duplicate (was: Assigned)

Sign in to add a comment