Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 977 Bytes

app-store.mdx

File metadata and controls

30 lines (23 loc) · 977 Bytes
sidebar_position description
1
App Store credentials guide.

App Store Credentials

Generate Shared Secret

The application password or secret it used to authenticate LIAP with the App Store.

  1. Go to App Store Connect.
  2. Log in with your Apple ID.
  3. Click on the My Apps and select the app you want to configure.
  4. Select App Information under the General section from the left menu.
  5. Select Manage under the App-Specific Share Secret section from the right side.
  6. Generate and copy your shared secret.

Add Credentials to the configuration file

Once you have your shared secret, you can add it to the configuration file.

[
  // Other configuration options are omitted for brevity.
  'appstore_password' => env('APPSTORE_PASSWORD', ''), // Your shared secret
];