A notarized app is a macOS app that was uploaded to Apple for processing before it was distributed. When you export a notarized app from Xcode, it code signs the app with a Developer ID certificate and staples a ticket from Apple to the app. The ticket confirms that you previously uploaded the app to Apple.
On macOS 10.14 and later, the user can launch notarized apps when Gatekeeper is enabled. When the user first launches a notarized app, Gatekeeper looks for the app’s ticket online. If the user is offline, Gatekeeper looks for the ticket that was stapled to the app.
Apple has made this a hard requirement as of 10.15 (Catalina).
teamId String - The team ID you want to notarize under.
... or apiKey with apiIssuer:
appleApiKey String - Required for JWT authentication. See Note on JWT authentication below.
appleApiKeyId String - Required for JWT authentication. See Note on JWT authentication below.
appleApiIssuer String - Issuer ID. Required if appleApiKey is specified.
... or keychain with keychainProfile:
keychain String - The name of the keychain or path to the keychain you stored notarization credentials in.
keychainProfile String - The name of the profile you provided when storing notarization credentials.
Safety when using appleIdPassword
Never hard code your password into your packaging scripts, use an environment
variable at a minimum.
It is possible to provide a keychain reference instead of your actual password (assuming that you have already logged into
the Application Loader from Xcode). For example:
Another option is that you can add a new keychain item using either the Keychain Access app or from the command line using the security utility:
security add-generic-password -a "AC_USERNAME" -w <app_specific_password> -s "AC_PASSWORD"
where AC_USERNAME should be replaced with your Apple ID, and then in your code you can use:
constpassword=`@keychain:AC_PASSWORD`;
Notes on JWT authentication
You can obtain an API key from Appstore Connect. Create a key with App Manager access. Note down the Issuer ID and download the .p8 file. This file is your API key and comes with the name of AuthKey_<api_key>.p8. This is the string you have to supply when calling notarize.
Based on the ApiKey, altool will look in the following places for that file:
./private_keys
~/private_keys
~/.private_keys
~/.appstoreconnect/private_keys
Notes on your Team Short Name
If you are a member of multiple teams or organizations, you have to tell Apple on behalf of which organization you're uploading. To find your team's short name), you can ask iTMSTransporter, which is part of the now deprecated Application Loader as well as the newer Transporter.
import{notarize}from'electron-notarize';asyncfunctionpackageTask(){// Package your app here, and code sign with hardened runtimeawaitnotarize({
appBundleId,
appPath,
appleId,
appleIdPassword,
ascProvider,// This parameter is optional});}
请发表评论