Skip to main content
Filter by
Sorted by
Tagged with
Advice
1 vote
3 replies
64 views

I’m building a custom web browser in C to interact with specific target URLs. Target frequency is human-level requests (once every 1–3 minutes). I use GET/POST requests and avoid automation or ...
JacobNowitsky's user avatar
Best practices
0 votes
1 replies
44 views

I am wondering where I should put http basic auth delegate methods in my xcode project, given the conditions below. xcode 14.0 objective-c it has a tab bar controller, which has four view controllers....
doctor's user avatar
  • 145
Best practices
0 votes
1 replies
51 views

My team is currently implementing an integration between an SAP system and an API platform managed using IBM API Connect. In our current setup, the SAP system can only communicate using the HTTP ...
culose's user avatar
  • 1
0 votes
1 answer
159 views

I want to be able to get visibility of the client's certificate in my middleware. I have verified that, in Postman, the certificate is being sent. I tried this on both Linux and Windows 11. The root ...
Kerry Thomas's user avatar
0 votes
1 answer
25 views

Has anyone found a reliable way to stop N/https from forwarding the original Authorization header during a 302 redirect? The Problem: > I’m calling a third-party endpoint that redirects to a signed ...
Aithan Gimenez's user avatar
Advice
0 votes
4 replies
68 views

This current question relates to an earlier question that was asked here in stackoverflow around 5 years ago: aiohttp how to expose two port 80 and 443 for http and https? That question received a ...
HippoMan's user avatar
  • 2,390
Advice
3 votes
7 replies
93 views

Background I'm developing a web app. Persuading browsers to treat the test site like a live site so that testing can actually be done, seems to be the hard part. My (lack of) Understanding As I ...
AlanQ's user avatar
  • 135
0 votes
0 answers
79 views

I'm building a Flutter app and HTTPS API calls fail only on older Android phones(Android 7 and below). On modern devices everything works. If I bypass certificate validation like this: class ...
Akhil George's user avatar
  • 1,097
1 vote
0 answers
105 views

I’m running into a strange TLS/HTTPS issue in my Flutter project and can’t figure out why it only happens inside Flutter/Dart. I have a backend API hosted at: https://my-backend/api/v1 If I call the ...
patrick menendez's user avatar
3 votes
0 answers
130 views

A dio.get() call that takes only 150 ms with curl blocks for 6–8 seconds on the client side. The pause happens before Dio prints the first REQUEST log line, so the delay is not caused by DNS, TLS, or ...
Wassim Ben Mechlia's user avatar
0 votes
0 answers
96 views

I am developing an Android app similar to Yacine TV that streams video content using a WebView. However, on some devices running Android 12 and 13, the video player shows a black screen while the ...
Ethan Parker's user avatar
0 votes
0 answers
58 views

Context: I am trying to build a Spring Boot application and have exposed a REST api endpoint to upload files(as large as 1 GB). Question: Since the data transfer for a multipart file happens in chunks ...
Aakash_Deep's user avatar
0 votes
0 answers
879 views

On a development server hosting a web application that can be accessed via http and https (through self-signed unsecure certifcate that needs the browser to force accept the certificate), Firefox won'...
k0pernikus's user avatar
  • 67.9k
0 votes
1 answer
195 views

I want to download the tar.gz files from this NOAA (NCEI) data source: https://www.ncei.noaa.gov/oa/local-climatological-data/index.html#v2/archive/ Normally, I can do something like this to get the ...
user8229029's user avatar
  • 1,275
1 vote
1 answer
118 views

My NET.MAUI Android app is throwing SSLPeerUnverifiedException: Hostname 192.168.100.2 not verified when sending POST request to a PHP script located on my desktop's IIS localhost, as shown below. ...
Stanislav Panferov's user avatar
1 vote
0 answers
469 views

I want to use Caddy as a reverse proxy for my system. The system contains a backend running on localhost:8080 to which all traffic is redirected. The proxy listens for HTTP traffic on :80 and for ...
Xobtah's user avatar
  • 530
-3 votes
1 answer
1k views

I have a simple app sending data to a web service (Ubuntu / Node js / javascript) Everything worked when using http (although an https setup issue may still be the problem). The problem appears to ...
jameseasylog's user avatar
1 vote
2 answers
93 views

I have an application with a form and now with a little experimental refactoring from last week 2 buttons doesn't do anything. Logging just say "button was click " but no method is called. ...
Da Wolf's user avatar
  • 11
0 votes
1 answer
245 views

I've set up Web Station on a Synology DS918+ NAS (running the latest version of DSM 7.x). We want to use it as a local intranet server accessible only from local IPs, so we don't need external access, ...
Mike West's user avatar
-4 votes
1 answer
56 views

My understanding of HTTPS is that the initial server communication has the authority sent in plaintext while the remainder of the communication is encrypted, eg https://example.com/foo?bar=baz will ...
Mawootad's user avatar
1 vote
0 answers
148 views

Over the past few days, I’ve been developing a project in C# (.NET 4.8) that scrapes and validates hundreds of HTTP/S proxies. I’ve experimented with multiple approaches to confirm whether a proxy is ...
Trenton Hill's user avatar
0 votes
1 answer
65 views

I have a redmine (5.1.9) server running on apache (2.4). When processing email replies, it fails trying to post an HTTP request to itself. I believe this happens because the apache server itself ...
Gary Aitken's user avatar
1 vote
0 answers
126 views

I’m working on a React Native 0.74 app with a third-party SDK that requires Metro to run over HTTPS instead of HTTP. I prefer to use USB method over WI-FI. Setup React Native 0.74.1 Android physical ...
user1906437's user avatar
0 votes
1 answer
125 views

I am using EC200U module to make an HTTPS POST request to my Flask server hosted on Render. The SSL configuration seems fine, but I always receive HTTP/1.1 400 Bad Request from the server. Here are ...
Charumathy Ma's user avatar
-1 votes
2 answers
210 views

Got a project using ESP32 with SIM7600E 4g LTE module, and im trying to get it to send data to firebase realtime database. i can get it to successfully initialise and connect to cellular network. ive ...
matt gaming's user avatar
0 votes
0 answers
82 views

The following lines of code seem to constantly lead to a timeout exception and I'm not sure why? Note timeout set to 10s. The error is a "System.Threading.Tasks.TaskCanceledException' - 'The ...
Zeller33's user avatar
  • 311
0 votes
2 answers
154 views

I'm writing a PowerShell script to set up several websites on developers' machines in IIS (not IIS Express). I understand that the current recommendation (as at 2025) is to create IIS websites using ...
Simon Elms's user avatar
  • 20.4k
1 vote
0 answers
282 views

I’m working on an embedded Android TV project. I’m using NanoHTTPD as the web server. The server hosts a simple web page that can be accessed from a browser by entering the IP address of the TV. Here’...
Hilal Demir's user avatar
0 votes
1 answer
128 views

I tried to install OwnCloud on a new droplet running Fedora 41. This tutorial page: How To Install and Configure ownCloud It doesn’t offer any steps. The steps offered here seemed to work w/o ...
Seth's user avatar
  • 125
0 votes
3 answers
226 views

As I understand, in order to open a SSL tunnel between client and a server through a proxy: we open a TCP socket with the proxy. we make an HTTP CONNECT method, which basically makes the proxy only ...
tony_merguez's user avatar
0 votes
0 answers
131 views

I'm using Squid as a forward proxy with SSL-bump to cache responses from a dynamic HTTPS API (e.g., https://www.uuidtools.com/api/generate/v4/count/1). The API always returns a new value and sends ...
Husin Wijaya's user avatar
  • 1,457
0 votes
0 answers
57 views

I am setting up a local, Dockerised version of a Django Wagtail project (which I have had running locally before). I am able to see Pages in my browser, but when I try to login (on FF, Chrome, Safari-...
KindOfGuy's user avatar
  • 3,251
1 vote
2 answers
1k views

I have hosted a function on Google Could run and am able to call it with FastMCPClient. Thank you for the help with my earlier question. This is my MCP Server code. This is deployed as a docker image ...
Sachu's user avatar
  • 358
1 vote
0 answers
51 views

In my React Native app, I need to open a WebView redirecting to my NextJS application. Its a simple page rendering a FaceDetection component from Amazon Amplify UI. The "problem" (which I ...
matheus-provin's user avatar
3 votes
1 answer
401 views

I have deployed a python script for mcp server in a docker container on Google Cloud Run. Below is a sample script import asyncio import logging import os from fastmcp import FastMCP logger = ...
Sachu's user avatar
  • 358
1 vote
0 answers
145 views

I tried installing a PWA that I made to my android, but I can't find any way to do so as I need to host in https. First I tried with GitHub Pages which hosts the web for me and after succesfully ...
Agente 156's user avatar
1 vote
0 answers
47 views

I am trying to raise docker compose for my services, and I want them to use https protocol to communicate, so I wrote something like this in my Program.cs file: builder.WebHost.ConfigureKestrel(...
zahar's user avatar
  • 25
0 votes
1 answer
356 views

Mixed Content Issue in FastAPI Application - Some Endpoints Work with HTTPS, Others Don't The Problem I'm facing a "mixed content" issue in my web application that uses FastAPI for the ...
Gabriel Mesquita's user avatar
0 votes
1 answer
67 views

I'm running a Node.js application with HTTPS and Socket.IO on an AWS EC2 instance, behind NGINX. The REST APIs work fine, but the WebSocket connection to Socket.IO fails with a 400 Bad Request. const ...
Kulweet_kumar's user avatar
-3 votes
1 answer
76 views

I created some endpoints in my Spring service that run over HTTP on port 8080. On the other hand, my web page, which consumes these endpoints, requires HTTPS, which leads to the following error: “This ...
Emiliano Quintero's user avatar
0 votes
1 answer
824 views

I'm trying to update an Azure Application Gateway so that it uses a certificate held in an Azure Key Vault rather than uploaded directly into the listener. The certificate held in the Key Vault was ...
Mark's user avatar
  • 53
0 votes
1 answer
78 views

I am following this example to implement client with httpx transport. However, I'm getting this error: AttributeError: 'AsyncClientSession' object has no attribute 'execute_batch' This is the code ...
Rahul's user avatar
  • 11.7k
0 votes
0 answers
94 views

I want my Flutter Android app to reject all clear‑text HTTP traffic (i.e. only allow HTTPS). AndroidManifest.xml xml <application … android:usesCleartextTraffic="false" android:...
Fadi Asfour's user avatar
0 votes
1 answer
104 views

I have created a REACT application that calls some REST APIs to get data from a Node.js server. To enhance security, I am using JWT-based authentication. It is working properly in the development ...
The KNVB's user avatar
  • 3,852
0 votes
0 answers
56 views

I have a Flask backend running behind Ngrok at: https://1fb0-219-100-161-121.ngrok-free.app and a React/UMIJS front-end served (also via Ngrok) at: https://f52f-219-100-161-121.ngrok-free.app They ...
ITnewbie's user avatar
2 votes
2 answers
241 views

Background I have a Jenkins build pipeline that dynamically spins up a Windows VM, clones a repo containing utilities for our release process, and then uses a python script in that repo to clone a ...
OmniZ's user avatar
  • 143
0 votes
0 answers
45 views

I tried to run my ASP.NET Core Web API in Visual Studio Code using https on Brave but I get an error Your connection is not private I tried to use dotnet dev-certs https --clean dotnet dev-certs ...
user26861869's user avatar
0 votes
0 answers
120 views

I was just working on a project, and I required a c++ code in which I could implement wininet functions to make an HTTPS request to a server. Here is the following code ... void connect(LPCSTR ...
Sayan Ray's user avatar
0 votes
0 answers
58 views

I have a platform that I'm building, this platformed is designed to be very modular and each component manages its state, now one key component of my platform is a JWT Token that I have linked to a ...
Samuel Lino's user avatar
0 votes
0 answers
17 views

I'm trying to connect to a public API that's on the following domain https://curs.bnr.ro, but I'm facing this issue: Error: unable to verify the first certificate at TLSSocket.onConnectSecure (...
undefined's user avatar
  • 2,149

1
2 3 4 5
500