Postdata is the data sent by an HTTP POST Request, which is one request type of the HTTP Specification. In contrast to the GET Request, it contains a message body which can contain any type of data, like Strings and Binary Data.
Questions tagged [postdata]
193 questions
0
votes
2 answers
Laravel CURL - Passing a string to HTTP URL (Postfields)
I use Laravel 9 and the built-in method Http::withHeaders ($headers)->post($url, $data).
In the $data variable, I pass the string that resulted from http_build_request with the "&" separator. But Laravel tries to make an array out of it and send…

ForceMan
- 25
- 1
- 7
0
votes
1 answer
Sending a json object with ajax post
Im working on a project, where we try to exchange different parameters between the UI and a RestAPI via AJAX. The RestAPI defines how the data has to look:
I tried to solve it this way:
$(document).ready(function(){
…

skywalther
- 15
- 4
0
votes
1 answer
Unable to send multiple entries to database in Django
My aim is to send all the Added items to my database. There is no error while posting data to the database but my form populates the database with only one entry, i.e., "The value of the last input among all inputs". I am new to Django development,…

Hasnain
- 679
- 7
- 18
0
votes
0 answers
Python post data params not working in the requests method of post
i've write a code to do crawl a page from doing post requests but still not working and i think the problem is from the data variable for sending post,
i tried manually changing values of the request in http live header it works to grap the json…
0
votes
1 answer
wp_reset_postdate not reseting as expected
I have a Wordpress function that is used within two pages of my site, home page and category archive. Whilst this code works perfectly on the category archive, the home page seems to have issues with wp_reset_postdata() - but i don't know how to fix…

grhmstwrt
- 341
- 1
- 6
- 20
0
votes
1 answer
Need to Submit a POST request to "/..." with the following data in form-data: React Native
Need to Submit a POST request to "/..." with the following data in form-data: React Native.
firstName: text,
middleName: text,
lastName: text,
email: text,
country: text Alpha-3 country code (e.g. EGY or DEU),
phone: text,
dob: text Date of…
0
votes
0 answers
Use foreach loop to assign postdata variable
I wonder if I can use foreach to optimize my code and avoid mistakes.
I have to set variable like that from postdata:
$a2 = $postdata->a2;
$a3 = $postdata->a3;
$a4 = $postdata->a4;
and so on...
I forgot one line, it cause trooble in my…

Etienne
- 73
- 8
0
votes
0 answers
Post method is posting last value from queue in volley android
I am posting value from my fragment adapter through volley
I am posting the match ID against each item and every item has its own unique ID. All the items get correct ID but when i post the ID, it gets the last item ID not that ID which is…
0
votes
1 answer
save hidden values in header after redirect
I have a form with 2 pages that retrieve information, that information is stored in my header file as hidden values. After the second page the user is directed to a third party payment system. Then they are redirected back to the third page of the…

Technupe
- 4,831
- 14
- 34
- 37
0
votes
1 answer
C# webbrowser postData -> default
I have a problem sending postData while user click on button on some webpage. It means that postData cannot be Null. Here is the code:
webBrowser1.Navigate(e.Url, "_self", default(byte[]), headers);
As you can see I've used default(byte[]) for…

Doctorslo
- 287
- 2
- 3
- 12
0
votes
1 answer
asp.net post data and get data
The actual scenario is, a third party is posting data to my asp.net(ASPX) page and then redirecting the control to my page http://example.com/confirm.aspx, in the confirm.aspx page, i am able to read the data on page_load, however since the third…
0
votes
0 answers
How to secure and enrypt android app data
I want to pass android app data securely on Server. SSL certificate is installed on server but still want to add one more layer over it.
What is the best way to secure and encrypt the android app data?
What other checks should be added on…

kreya
- 1,091
- 5
- 24
- 52
0
votes
1 answer
Best practice for accessing submitted form data in django for use before saving to database
I am developing an app in Django where I am suppose to save user Invoice details to database. One of the inputs from the user is a selection of payment type. I am supposed to pick this selection value and retrieve amount from database before I save…

japheth
- 373
- 1
- 10
- 34
0
votes
1 answer
How can i run PHP Preg_match against all POST Data?
I have a HTML form where users submit information, depending how many options the user selects in a form there is a different number of POST data sent, some as an array.
The POST data looks like this with VARDUMP:
array(8) { ["animal"]=> string(7)…

Jonny P
- 443
- 3
- 11
0
votes
0 answers
http post request return 400
I'm using HTTP post method to call Gitlab API which in return it gives me 400 response code.
I have tested the gitlab api with postman with providing propers headers and content body as JSON.
it worked fine and. ( I use gitlab create branch api )
I…

Nadee
- 342
- 1
- 6
- 18