本文簡要介紹 python 語言中 arcgis.gis._impl.APIKey.update
的用法。
用法:
update(http_referers=None, privileges=None)
返回:
一個字典
update
方法更新當前 APIKey 對象的屬性Parameter
Description
http_referers
可選列表。限製使用 API key 的 http 引薦來源網址列表。
示例
` [ "https://foo.com", "https://bar.com" ] `
注意:也可以為非 apiKey 類型的應用程序配置 Http Referrers。此處配置的列表將用於驗證在訪問共享 API 時發送的應用令牌。推薦人檢查不會應用於用戶令牌。
privileges
可選列表。可用於此 API key 的權限列表。
示例
[“portal:apikey:basemaps”、“portal:app:access:item:itemId”、“premium:user:geocode”、“premium:user:networkanalysis”]
注意:也可以為非
API Key
類型的應用程序配置權限。當使用應用令牌訪問項目端點時,此處配置的列表將用於授予對項目的訪問權限。這些檢查不會應用於用戶令牌,他們可以根據當前的項目共享模型繼續訪問項目。使用應用令牌,如果未配置權限列表,則可以訪問應用所有者的所有項目。例子:
# Usage Example >>> key1 = gis.api_keys.keys[0] >>> key1.update(http_referers = ["https://foo.com", "https://bar.com"], >>> privileges = ["portal:apikey:basemaps", >>> "portal:app:access:item:itemId", >>> "premium:user:geocode", >>> "premium:user:networkanalysis"])
相關用法
- Python ArcGIS APIKeyManager.get用法及代碼示例
- Python ArcGIS APIKeyManager.create用法及代碼示例
- Python ArcGIS APIKey用法及代碼示例
- Python ArcGIS APIKeyManager.validate用法及代碼示例
- Python ArcGIS AssignmentType用法及代碼示例
- Python ArcGIS Assignment用法及代碼示例
- Python ArcGIS AWSIoT用法及代碼示例
- Python ArcGIS AssignmentTypeManager用法及代碼示例
- Python ArcGIS AssignmentIntegrationManager用法及代碼示例
- Python ArcGIS AzureServiceBus用法及代碼示例
- Python ArcGIS AzureEventHub用法及代碼示例
- Python ArcGIS AssignmentManager用法及代碼示例
- Python ArcGIS power用法及代碼示例
- Python ArcGIS KnowledgeGraph.named_object_type_delete用法及代碼示例
- Python ArcGIS ContentManager.unshare_items用法及代碼示例
- Python ArcGIS ImageryLayer.thumbnail用法及代碼示例
- Python ArcGIS FormFieldElement用法及代碼示例
- Python ArcGIS Geometry.true_centroid用法及代碼示例
- Python ArcGIS Site.delete用法及代碼示例
- Python ArcGIS GeoAccessor.bbox用法及代碼示例
- Python arcgis.apps.hub.Initiative.update用法及代碼示例
- Python ArcGIS generate_service_areas用法及代碼示例
- Python ArcGIS build_overview用法及代碼示例
- Python ArcGIS RunInterval用法及代碼示例
- Python ArcGIS describe_dataset用法及代碼示例
注:本文由純淨天空篩選整理自arcgis.com大神的英文原創作品 arcgis.gis._impl.APIKey.update。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。