SecRequestSharedWebCredential(_:_:_:)
Asynchronously obtains one or more shared passwords for a website.
Declaration
func SecRequestSharedWebCredential(_ fqdn: CFString?, _ account: CFString?, _ completionHandler: @escaping (CFArray?, CFError?) -> Void)Parameters
- fqdn:
(Optional) The fully qualified domain name of the website for which passwords are being requested. If
NULLis passed in this argument, the domain name(s) listed in the calling app’s Com.apple.developer.associated Domains are searched implicitly. - account:
(Optional) The account name for which passwords are being requested. The account may be
NULLto request all of the shared credentials that are available for the site, allowing the caller to discover an existing account. - completionHandler:
A block that is called to deliver the requested credentials.
The block takes two arguments:
credentialsAn array containing the requested passwords. If no matching items are found, the credentials array is empty. The credentials reference is automatically released after this handler is called, though you may optionally retain it for as long as needed.
errorIf the shared password was successfully added (or removed),
NULL; if not successful, a Cferror object that encapsulates the reason why the password could not be added (or removed). The error reference is automatically released after this handler is called, though you may optionally retain it for as long as needed.
Mentioned in
Discussion
This function requests one or more shared passwords for a given website, depending on whether the optional account parameter is supplied. To obtain results, the website specified in the fqdn parameter must be one that matches an entry in the calling app’s Associated Domains Entitlement.
If matching shared password items are found, the credentials provided to the completion handler will be a CFArray data type containing CFDictionary entries. Each dictionary contains the following pairs:
Key | Value |
|---|---|
Cfstring (the website) | |
Cfstring (the account) | |
Cfstring (the password) |
If the found item specifies a nonstandard port number (other than 443 for https), the following key may also be present:
Cfnumber (the port number) |
|---|