Skip to content

Commit 7e664e2

Browse files
committed
Remove Credentials table
- This was getting out of sync - The complete examples now show everything, so it is no longer needed
1 parent ffb2d31 commit 7e664e2

File tree

1 file changed

+0
-35
lines changed

1 file changed

+0
-35
lines changed

source/ios/authenticate.txt

Lines changed: 0 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -20,48 +20,13 @@ authentication provider. Instantiate a ``Credentials`` object and pass
2020
it to the ``app.login()`` method to authenticate a user and create a ``User``
2121
object. Each authentication provider corresponds to a method used to
2222
instantiate ``Credentials`` objects using that authentication provider.
23-
See the table below to find the method that instantiates the
24-
``Credentials`` instance for your authentication provider:
25-
26-
.. list-table::
27-
:header-rows: 1
28-
:widths: 50 50
29-
30-
* - Authentication Provider
31-
- Credentials Generation Method
32-
33-
* - :ref:`Anonymous <ios-login-anonymous>`
34-
- ``Credentials.anonymous()``
35-
36-
* - :ref:`Email/Password <ios-login-email-password>`
37-
- ``Credentials(email: String, password: String)``
38-
39-
* - :ref:`API Key <ios-login-api-key>`
40-
- ``Credentials(userAPIKey: String)``
41-
42-
* - :ref:`Custom Function <ios-login-custom-function>`
43-
- ``Credentials(functionPayload: [AnyHashable : Any], error: NSErrorPointer)``
44-
45-
* - :ref:`Custom JWT <ios-login-custom-jwt>`
46-
- ``Credentials(jwt: String)``
47-
48-
* - :ref:`Google OAuth <ios-login-google>`
49-
- ``Credentials(googleAuthCode: String)``
50-
51-
* - :ref:`Facebook OAuth <ios-login-facebook>`
52-
- ``Credentials(facebookToken: String)``
53-
54-
* - :ref:`Sign-in With Apple <ios-login-apple>`
55-
- ``Credentials(appleToken: String)``
56-
5723

5824
Before you can authenticate a user, ensure you have:
5925

6026
- :ref:`Created a {+app+} <create-a-realm-app>`
6127
- Enabled one or more :ref:`authentication providers <authentication-providers>`
6228
- :ref:`Installed the iOS SDK <ios-install>`
6329

64-
6530
Log In
6631
------
6732

0 commit comments

Comments
 (0)