10,691 questions
Score of 0
0 answers
68 views
Getting SSL error while fetching data from BLS
I'm trying get data from BLS using code below. I have windows machine with zscalar with Python 3.14.
Please help me.
import requests
import json
headers = {
'Content-type': 'application/json',
...
Score of 2
3 answers
566 views
Python Request returns error: Basic Constraints of CA cert not marked critical
I'm in a corporate network and need to use a self-signed certificate, and I get the following error when i make a post request to my endpoint
response = requests.post(self.api, headers=headers, ...
Score of 1
1 answer
125 views
How to resolve SSL certificate problem during repo2docker GitHub Action for building cache for mybinder.org?
I have set up a repository on GitHub with an environment.yml file and Jupyter notebook .ipynb files that the mybinder.org web service is successfully able to pull from and load its contents.
What I ...
Advice
0
votes
1
replies
114
views
R on Windows: SSL inspection, where to add root CA?
Behind a corporate firewall with SSL inspections. Note that they whitelisted the cran url of my choice put told my it's my problem to get it to trust the CA.
This blocks the installation of packages ...
Score of 0
0 answers
678 views
Flutter CERTIFICATE_VERIFY_FAILED on Android 13/14 but works perfectly on Android 16 (Sectigo CA)
I am developing a Flutter application that communicates with a live API server via HTTPS. The API calls work perfectly on an Android 16 device, but when I test the exact same code on devices running ...
Score of 0
0 answers
110 views
Maui app on Android throws an HTTPRequestException
The Maui app is in the same solution as my C# API project. It runs fine on Windows but when I run it in the VS Android emulator, it throws the exception trying to call the API. Everything I've read ...
Score of 2
0 answers
142 views
Error in react-webview: error loading page. Domain: undefined. Error code: 3. Description: SSL error: The certificate authority is not trusted
I can't open a website within a webview in React Native. I always get the following message.
Note: the site has normal SSL, but the SSL error keeps appearing:
error loading page. Domain: undefined. ...
Score of 0
1 answer
124 views
Getting error "unable to get local issuer certificate" in GitExtensions Only
I have read the following two related questions:
Unable to resolve unable to get local issuer certificate using git on windows
Configure git to accept a particular self signed server certificate
I'...
Advice
0
votes
5
replies
89
views
Mechanism to in Javascript verify certificate hash?
When I was younger, I was hit by the Fortigate compromise, in which my bank was man-in-the-middle'd because Firefox included the Fortigate certificate, and now, with the more recent attack of Notepad++...
Score of 0
1 answer
160 views
How can I get conan to "live with" self-signed proxy certificates?
I am trying to access a conan server from within an organization's network that employs a transparent proxy. That proxy uses a certificate which is self-signed, giving me all sorts of trouble. ...
Score of 1
1 answer
240 views
Cannot start debug session in Visual Studio due to SSL cert missing or being out of date
I have an ASP.NET web application that has been working fine when pressing F5 to start a debug session in Visual Studio. Last Friday (January 23) I started getting this exception:
System....
Score of 0
0 answers
89 views
Can I bind an Azure Web App certificate by Azure resource ID instead of by thumbprint?
I'm running into some complications with 47-day cert validity periods that I didn't think were going to be enforced until 2029.
For some backstory, I renewed a cert in December of last year only to ...
Advice
2
votes
4
replies
52
views
Bind certificate to a port without calling into unmanaged code?
I'm trying to bind a certificate to a port in C#. For now I use HttpSetServiceConfiguration. Is it possible to do this using only .NET without calling into unmanaged code?
Advice
3
votes
7
replies
126
views
How to persuade browsers on a local network to treat a locally delivered web app like it was on a live site?
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 ...
Score of 0
0 answers
119 views
Flutter HTTPS calls fail on older Android, only works if I bypass SSL certificate check
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 ...