You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Version 1.1.1 on QGIS 3.22.8
It is not possible to connect to services when behind my organizations proxy. The code revealed that proxy settings are not included in the requests at the moment. Is that correct?
Anyway, in my case the change of some requests in the code helped to connect to the services with a proxy.
For requests from pystac_client I changed the requests to the following form:
As a suggestion for the plugin development it would be good to use the QGIS global proxy settings from QSettings for the plugins requests. You can easily access them by their values:
And apart from that it could also be useful to have some proxy config in the UI of the plugin.
Besides I have no clue about my organisations proxy. Maybe it should all workout automatically without further configuration, because it usually does that when using web browsers e.g..
The text was updated successfully, but these errors were encountered:
Version 1.1.1 on QGIS 3.22.8
It is not possible to connect to services when behind my organizations proxy. The code revealed that proxy settings are not included in the requests at the moment. Is that correct?
Anyway, in my case the change of some requests in the code helped to connect to the services with a proxy.
For requests from pystac_client I changed the requests to the following form:
And for requests with Pythons requests lib by adding the proxy dictionary directly as an argument:
As a suggestion for the plugin development it would be good to use the QGIS global proxy settings from QSettings for the plugins requests. You can easily access them by their values:
And apart from that it could also be useful to have some proxy config in the UI of the plugin.
Besides I have no clue about my organisations proxy. Maybe it should all workout automatically without further configuration, because it usually does that when using web browsers e.g..
The text was updated successfully, but these errors were encountered: