Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
70 views
in Technique[技术] by (71.8m points)

javascript - Does puppeteer support PUT method

Like the title. Im trying to automatically crawling data and then edit them using puppeteer, heres my code

page2.on('request', interceptedRequest => {
            var data = {
                'method': 'PUT',
                'putData':  JSON.stringify(stage),
                'headers': {
                    'Authorization': `Bearer ${token}`,
                    'Content-Type': 'application/json'
                }
            };
            interceptedRequest.continue(data);
});

So i encounter an error as the response from the server

{"timestamp":"2021-01-23T14:19:01.276+00:00","status":405,"error":"Method Not Allowed","message":"Request method 'POST' not supported"}

Any ideas guys? Thanks for reading

Edit: i have also tried postData in the intercept
question from:https://stackoverflow.com/questions/65860304/does-puppeteer-support-put-method

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...