About Password AutoFill

Created: Modified: Knowledge Base

This page is intended for software developers for iOS devices,and is a companion to iOS App Logout via Universal Link Callback.

Introduction

Password AutoFill is a powerful way to reduce password fatigue on dedicated devices. Password AutoFill also works on shared devices when using an appropriate third party password manager.

Although usually used to link website passwords to app passwords, you don’t need a web site, at least when using an appropriate 3rd party password manager. But you do need to host a single file on a web site in order for Apple to verify your app’s identity and permit password AutoFill.

Enabling AutoFill in your App

It’s relatively easy to set up AutoFill.

  1. Select a hostname (“domain”) to associate to your app. We recommend a hostname that is used solely for this purpose, but you can repurpose one if you like.
  2. Construct an Apple App Site Association file.
  3. Add the hostname to your Xcode project as an Associated Domains Entitlement.
  4. Set up the correct AutoFill types on your username and passwords fields.
Example

Here is an example for one of our projects, that includes both AutoFill support (“webcredentials”) and Universal Links support (“applinks”).

AppCosmos Shared
App IDcom.imprivata.CosmosShared
Associated Domaincosmos-shared.groundctl.com
AASA filehttps://cosmos-shared.groundctl.com/.well-known/apple-app-site-association

AASA contents:

{
  "applinks": {
    "details": [
      {
        "appID": "4M5ZN5CV6L.com.imprivata.CosmosShared",
        "components": [
          {
            "/": "*"
          }
        ]
      }
    ]
  },
  "webcredentials": {
    "apps": [
      "4M5ZN5CV6L.com.imprivata.CosmosShared"
    ]
  }
}