The Event Editor throws an "invalid_redirect_uri" error when trying to access a specific version that is owned by an OS authenticated user.
上次发布: June 28, 2019ArcGIS Roads and Highways
漏洞 ID 编号
BUG-000122888
已提交
June 6, 2019
上次修改时间
February 12, 2025
适用范围
ArcGIS Roads and Highways
找到的版本
10.6.1
操作系统
Windows OS
操作系统版本
2012
状态
Known Limit
经开发团队审核,已确定此问题与不受 Esri 控制的软件的已知限制有关。 问题的“其他信息”部分可能包含进一步说明。
附加信息
This is a limitation of web browsers and how they read version names that include special characters like \. If the URLs created include this character (\), utilize the Python snippet below to transform the URL to be correctly read by the browser.
#Parse the WMX tokens passed as system argument variables into the web URL
log_write(log_file, 'Version: ' + Job_Version)
if "\\" in Job_Version:
VersionList = Job_Version.split(".")
Owner = VersionList[0]
OwnerList = VersionList[0].split("\\")
Domain = OwnerList[0]
OwnerUsr = OwnerList[1]
Version = VersionList[1]
#Web_Version = '%22' + Owner + '%22.' + Version
Web_Version = '%22' + Domain + '%5c' + OwnerUsr + '%22.' + Version
log_write(log_file, 'Formatted web version: ' + Web_Version)
#DB owned version
else:
Web_Version = Job_Version
log_write(log_file, 'Formatted web version: ' + Web_Version)