---
sourceDocument: Yokohama Mobile Configuration and Navigation
sourceDocumentLink: https://www.servicenow.com/docs/r/yokohama/mobile

 Release :

    - yokohama

ft:locale :

    - en-US

ft:publication_title :

    - Yokohama Mobile Configuration and Navigation

ft:clusterId :

    - mobile

bundleId :

    - mobile

workflow :

    - evelopment, Data and Analytics


---

# User authentication for ServiceNow mobile apps

# User authentication for ServiceNow mobile apps {#ariaid-title1}

* Release version: Yokohama
* 
* Updated January 30, 2025
* 
* ![](https://www.servicenow.com/docs/portal-asset/ico-clock) 1 minute to read

ServiceNow mobile apps support platform authentication using OAuth
2.0. Authentication mechanisms include multi provider SSO, MFA, LDAP, Local DB, and Digest.

## AppAuth authentication {#sg-mobile-identity-access-mgmt__section_ir4_gjz_cgb}

The ServiceNow mobile apps use a new authentication methodology called AppAuth. AppAuth uses an external mobile browser to log the user in. The following steps detail login using AppAuth.

1. The client creates and records a secret named the `code_verifier`, and derives a transformed version `t(code_verifier)` (referred to as the `code_challenge`). This `code_challenge` is sent in the OAuth 2.0 Authorization Request along with the transformation method `t_m`.
2. The Authorization Endpoint responds as usual but records `t(code_verifier)` and the transformation method.
3. The client then sends the authorization code in the Access Token Request as usual but includes the `code_verifier` secret generated in the previous steps.
4. The authorization server transforms `code_verifier` and compares it to `t(code_verifier)` from the previous steps. Access is denied if they are not equal.
{#sg-mobile-identity-access-mgmt__ol_xvm_hjz_cgb}  
Figure 1. Abstract protocol flow

## Single sign-on {#sg-mobile-identity-access-mgmt__section_axc_kgt_ddb}

ServiceNow mobile apps require multi-provider single sign-on in order to
use external authentication. The multi providers SSO plugin
\[com.snc.integration.sso.multi.installer\] provides SAML authentication support. The login
process (AppAuth) uses this plugin to redirect the user to the IDP (SAML provider) login page
when using SAML.

For more information on this plugin, see [External single sign-on (SSO)](https://www.servicenow.com/docs/access?context=c_MultipleProviderSingleSignOn&version=yokohama&pubname=yokohama-platform-security&ft:locale=en-US).

For more information on configuring multi provider SSO, see [Multi-Provider Single sign-on (SSO)](https://www.servicenow.com/docs/access?context=c_MultipleProviderSingleSignOn&version=yokohama&pubname=yokohama-platform-security&ft:locale=en-US).

## Multifactor authentication {#sg-mobile-identity-access-mgmt__section_rdp_3jt_ddb}

Users can access the instance via Multifactor Authentication using the MFA plugin
\[com.snc.integration.multifactor.authentication\]. Users are directed to their login page after
selecting their instance in a mobile app.  
Figure 2. Multifactor login page in the Mobile Agent app

For details on configuring Multi-factor Authentication, see [Multifactor authentication system
properties](https://www.servicenow.com/docs/access?context=mfa-properties&version=yokohama&pubname=yokohama-platform-security&ft:locale=en-US)

## LDAP {#sg-mobile-identity-access-mgmt__section_b5v_tjt_ddb}

Use LDAP authentication to access using LDAP credentials. The user sees the same login page as the local login (DB based) but the back end to the LDAP server deletes the authentication. For more information on LDAP
configuration, see [LDAP integration](https://www.servicenow.com/docs/access?context=c_LDAPIntegration&version=yokohama&pubname=yokohama-platform-security&ft:locale=en-US).

## Local DB {#sg-mobile-identity-access-mgmt__section_hmh_mkt_ddb}

The user name and password in the user record in the instance database.

## Not officially supported {#sg-mobile-identity-access-mgmt__section_sxy_tkt_ddb}

* Kerberos
* Certificate-based authentication (AppAuth's external browser may solve for some certificate based mechanisms)
{#sg-mobile-identity-access-mgmt__ul_zy5_bnt_ddb}

