Questions tagged [postdata]

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.

193 questions
0
votes
1 answer

Is Google Website Optimizer omitting my query data transfer?

Symptom: I'm running a Google Website Optimizer A-B test on a web page, which is reached after the user fills out a form. The form data appears to arrive successfully when GWO does not fire a redirect (when the default page is reached after…
JellicleCat
  • 28,480
  • 24
  • 109
  • 162
0
votes
1 answer

Wordpress post object getting page title rather than object title

I have an ACF repeater, which repeats post objects. I am changing the postdata to the post object rather than the page so that i can get the title and thumbnail image. This works perfectly for the first one, however the subsequent objects pull the…
TMWLSH
  • 17
  • 4
0
votes
1 answer

how to use stringWithContentsOfFile for reading image in ios

I am getting an error while using the following method for reading image. [NSString stringWithContentsOfFile:imagepath encoding:NSUTF8StringEncoding error:&error The error is The file “image.png” couldn’t be opened using text encoding Unicode…
Pratik
  • 103
  • 1
  • 9
0
votes
1 answer

Post in ionic 3, cannot post

I am trying to send a POST request with HttpClient Angular to a server. I have error in code: file *.ts import { HttpClient } from '@angular/common/http'; constructor(public http: HttpClient){} public link…
ashe405
  • 59
  • 1
  • 9
0
votes
2 answers

Fetch POST Parameters in Golang with header as application/json

I am new to golang and trying to create REST API with POST Method using httprouter (https://github.com/julienschmidt/httprouter). I am using simple raw request with header as Content-Type : application/json. I have tried hard but not getting way to…
RKP
  • 750
  • 2
  • 12
  • 23
0
votes
2 answers

when post data show this error Android retrofit Expected BEGIN_OBJECT but was STRING

Hello developer i'm developing a web base chat system using android and php (laravel) so in my case i implement a Rest API to send chat message using laravel.my problem is when i post data to the server (send messages) no any case messages save on…
androidpc
  • 13
  • 5
0
votes
0 answers

CURL POST with random token

My problem is that in the second CURL the token has already changed because a new request is made ... is it possible to capture the token in a single request and send the postdata? /// THE RANDON TOKEN BY URL
0
votes
1 answer

How do I do a timed refresh/reload of a page without a POSTDATA warning in Javascript?

I am currently refreshing my page with But I am receiving a POSTDATA warning because it was wanting to…
Kade Williams
  • 1,041
  • 2
  • 13
  • 28
0
votes
0 answers

jqGrid: what function constructs postData.filters and is it possible to override it?

I use jqGrid with advanced search. For some reason I need to override the function that constructs postData.filters object.
searcher
  • 13
  • 3
0
votes
1 answer

Getting POST data from SELECT dropdown with variable value

I need to create as many dropdowns as values from a database table query in worpress. I can't get post data to usermeta table from foreach dropdown list . This is the code: $custom_posts_type = $wpdb->get_results("SELECT label,id FROM…
0
votes
1 answer

Generate CSRF Token in Ionic Framework

How to generate csrf token in ionic.? i m using django framework as server and wish to post data to server. This are my error: Forbidden (403) CSRF verification failed. Request aborted. You are seeing this message because this site requires a CSRF…
0
votes
1 answer

Posted form data remains in memory

My modal has a simple form in it and the form post data to process.php page. The $_POST['message'] and other posted data will be process inside process.php, however the value of $_POST['message'] and other posted data's values remains on the page.…
callmejoejoe
  • 101
  • 1
  • 1
  • 9
0
votes
0 answers

How to examine POST request data sent from python3 script in IntelliJ

I have a simple python3 script, using the requests package to send a POST request to an URL through https. I would like to find a way to check the content of the request sent, specifically I am interested in the data sent. Optimally I would like to…
achillin
  • 45
  • 1
  • 6
0
votes
1 answer

HttpWebRequests and Cookies in VB.net

so I've been having some issues trying to login to a site using httpwebrequests in vb.net. The site isn't anything amazing so it is definitely possible to log in. But what I am having issues with is the cookie container. I have been told by one…
1ben99
  • 557
  • 1
  • 7
  • 14
0
votes
0 answers

Form data to a CSV

I wrote this tid-bit of code as an attempt to grab the data from a timesheet form I created with contact form 7, save that data into a csv formatted the way I want, and then send that over to email specified in the "Mail" section of the Contact…
J Robz
  • 185
  • 10