1

我正在使用 python 脚本连接到 AGOL 要素服务层,并更新该层。现在,我使用以下方法来访问它:

gis_url = "https://xxxx.maps.arcgis.com"        #### Add your username and password
gis_username = 'username'
gis_password = 'password'
gis = arcgis.gis.GIS(gis_url, gis_username,gis_password)

但是,我想在启用了 CAC 的 DoD AGOL 门户空间中运行它。我对此很陌生。经过一些研究,我在 ESRI 培训中遇到了这个问题,

print('n\n\nPKI with key and cert files")
gis = GIS("https://portalname.domain.com/webcontext",
          key file="C:\\Path\\to\\key.pem",
          cert_file="C:\\path\\to\\cert.pem")

真的可以这么简单吗?我在我的电脑上查找了“key.pem”和“cert.pem”,其中有几个文件。我怎么知道我应该使用哪一个?先感谢您!

4

0 回答 0