Closed fleimgruber closed 5 months ago
As a user, I want to use geoserver-rest with a GeoServer instance that provides self-signed SSL certificates.
As a user, I would like to customize the functions using the requests package to set verify=False, see docs.
requests
verify=False
A possible solution would be to accept a **kwargs in the user-facing APIs, e.g. get_featurestore https://github.com/gicait/geoserver-rest/blob/d07ee027badc00c3a8ba968131b91fd7e5d0e284/geo/Geoserver.py#L2050
**kwargs
get_featurestore
and pass those **kwargs to the requests call https://github.com/gicait/geoserver-rest/blob/d07ee027badc00c3a8ba968131b91fd7e5d0e284/geo/Geoserver.py#L2062
so that users could do get_featurestore(..., verify=False).
get_featurestore(..., verify=False)
Hi @fleimgruber, I like the idea. Feel free to raise the PR if you want.
that sounds great
As a user, I want to use geoserver-rest with a GeoServer instance that provides self-signed SSL certificates.
As a user, I would like to customize the functions using the
requests
package to setverify=False
, see docs.A possible solution would be to accept a
**kwargs
in the user-facing APIs, e.g.get_featurestore
https://github.com/gicait/geoserver-rest/blob/d07ee027badc00c3a8ba968131b91fd7e5d0e284/geo/Geoserver.py#L2050and pass those
**kwargs
to therequests
call https://github.com/gicait/geoserver-rest/blob/d07ee027badc00c3a8ba968131b91fd7e5d0e284/geo/Geoserver.py#L2062so that users could do
get_featurestore(..., verify=False)
.