Add github metadata: workflow and funding
Decode notarization information from upload, info and history request using xcrun altool with --output-format xml as argument.
xcrun altool
--output-format xml
let response = try NotarizationResponse(from: data) // or string
xcrun altool --notarize-app ...
if let uuid = response.notarizationUpload?.requestUUID { ... }
xcrun altool --notarization-info <id> ...
if let status = response.notarizationInfo?.status { }
xcrun altool --notarization-history ...
for item in response.notarizationHistory?.items ?? [] { ... }
©Copyright 2023 CCF 开源发展委员会 Powered by Trustie& IntelliDE 京ICP备13000930号
NotarizationInfo
Decode notarization information from upload, info and history request using
xcrun altool
with--output-format xml
as argument.Decode
Get request UUID after uploading
xcrun altool --notarize-app ...
Get status
xcrun altool --notarization-info <id> ...
Get history
xcrun altool --notarization-history ...