Is there a publicly available HTTPS POST smoke test?

When debugging an HTTP client, one of your first tests will probably be a Google search, which allows you to check if your client is doing non-SSL-GET correctly. Everyone knows where it is, everyone can use it, and everyone can see if it succeeded.

My client has a problem with HTTPS POST. I can play it locally using my specially configured HTTPS server, but I want others to try it. Is there a public webpage using HTTPS where sending a test POST is not a bad idea?

Edit: In the end, the problem turned out to be that my client will cache network output over the line when sending through TLS. Obviously this causes problems for POST, but not for GET ...

+3
source share
8 answers

I stumbled upon this question looking for the same thing, but I also found https://posttestserver.com/ which provides such a service for HTTP and HTTPS.

+6
source

The Google App Engine now supports HTTPS . This should give you a simple and easy way to put test pages for anyone to see and serve them through HTTP and HTTPS. Give us a link, it may be useful to use for our customers if the tests are fairly general.

+5
source

HTTPS-, , - -.

, Google, , , https://www.google.com/accounts/ManageAccount ( HTTPS).

+4

Twitter. - json api . POST API . , , .

API curl, , . POST:

curl -u user:password -d "status=testing my HTTP POST request" https://twitter.com/statuses/update.json

, :

curl https://twitter.com/statuses/user_timeline.json?screen_name=user
+3

.

+1

, . , , -, . , Google .

, , . .

+1

, Google POST, .

0

SSL , .

GET HTTPS. Netscape/AOL/Mozilla, http://www.verisign.com, , HTTP/SSL, , , , , HTTP- HTTP.

https: URL, POST, , .

, SSL HTTP , , , , . , , .

My recent reflection on testing is that test groups need to set up their systems, especially test servers. You will probably get the best mileage by getting a good working set of instructions on how to configure HTTPS with self-signed certificates, and then create your own internal POST test pages.

0
source

Source: https://habr.com/ru/post/1717346/


All Articles