You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Adapters/Auth/apple.js
+6-2Lines changed: 6 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
*
4
4
* @class AppleAdapter
5
5
* @param {Object} options - Configuration options for the adapter.
6
-
* @param {string} options.clientId - Your Apple App ID.
6
+
* @param {string|string[]} options.clientId - Your Apple App ID, or an array of App IDs to accept tokens for multiple bundle IDs (e.g. separate iPhone and iPad apps sharing one Parse app).
7
7
*
8
8
* @param {Object} authData - The authentication data provided by the client.
9
9
* @param {string} authData.id - The user ID obtained from Apple.
@@ -21,6 +21,10 @@
21
21
* }
22
22
* }
23
23
* ```
24
+
* `clientId` also accepts an array of App IDs to accept tokens issued for any of several bundle IDs:
0 commit comments