Linked Questions
42 questions linked to/from How can I debug a HTTP POST in Chrome?
0 votes
1 answer
71 views
Unable to log in a site using payload with appropriate parameters as it doesn't show up in chrome dev tools
I'm trying to log in this website using my credentials running python script but the problem is that the xhr requests visible as login in chrome dev tools stays for a moment and then vanishes, so I ...
0 votes
1 answer
66 views
Submitting array of textfields using FormData() through ajax
I have an array of input text <input type="text" name="highlight" value="1"/> <input type="text" name="highlight" value="2"/> I used ajax and FormData() to submit it to the server. var ...
0 votes
0 answers
72 views
$.ajax $_POST to php returns empty array [duplicate]
I am trying to send a simple json object by $_POST to a php from an AJAX call. But everything I do is returning an empty array. Past posts have suggested using 'file_get_contents(x)', 'if(isset(x)){}...
0 votes
3 answers
116 views
AJAX not sending post data
I am currently attempting to send form data via ajax to a php function but it does not appear to be sending it. This is the HTML Form: <form onSubmit="return registration();" id="...
-4 votes
1 answer
55 views
Proper payload when using request.post
Obviously new to scraping but trying to submit the following form: https://apps.fcc.gov/oetcf/eas/reports/GenericSearch.cfm?calledFromFrame=N Have this script so far, but not sure if I fully ...
0 votes
1 answer
51 views
Getting 404 despite supplying required data using POST when trying to login to an website
I need to login into [a website] and use the session to scrape some data. However when using POST, I always get status 404. Here is what I have already tried: import requests PW="password" UN="...
0 votes
0 answers
48 views
Not receiving post data embed form in javascript
function editProfile() { var clearBackground = document.createElement("div"); clearBackground.setAttribute("id","clearBackgroundEdit"); document.body.appendChild(clearBackground); var div = ...
0 votes
1 answer
49 views
jQuery HTTP Post stopped working, only works when long strings are input
Quick background: Very new to web development. I have a bootstrap page with a form which users can fill out. There are four fields (two text boxes, one radio, one dropdown). The idea was to form a ...
1 vote
0 answers
44 views
can't access data from front-end "MultiValueDictKeyError"
Here is My Views from django.contrib import messages from django.contrib.auth import authenticate from django.contrib.auth.models import * from django.shortcuts import render, redirect from django....
0 votes
1 answer
33 views
Analysing a webpage to infer the potential methods for login using request python
I am stuck to this problem from last 2 weeks , I have tried everything available to me , Actually I want to login this page : https://accounts.coursera.org/signin , using request module but I am not ...
0 votes
1 answer
26 views
Requesting parameters are not sent over API in ionic 2
I am trying to send the the parameters using a post request but the parameters are not reaching to provide back the desired result and printing null as a result in console. here is my code var ...
1 vote
0 answers
26 views
Programmatically delete shared test steps in Azure DevOps [duplicate]
I am trying to find a way to programmatically delete shared test steps in ADO. I have tried both using the REST API and the Client SDK. The following error happens when trying to use the API: You ...