Este documento se ha actualizado.
La traducción en Español (España) no está disponible todavía.
Actualización del documento en inglés: 1 may.
Actualización del documento en Español (España): 22 ene. 2021

Limited Login FAQ

In response to the upcoming changes to ATT enforcement, we made changes to the iOS SDK and the SDK no longer provides valid user access tokens in scenarios where the user opts out of ATT. The access token validation or Graph API requests may throw errors like OAuthException - “Invalid OAuth access token - Cannot parse access token”. Our recommendation is that users integrate Limited Login following the official documentation:

When users opt out of ATT, all Facebook Login traffic will be performed on the Limited Login domain. Limited Login does not support business permissions. Our recommendation is that developers integrate Limited Login following the official documentation. See limited login supported permissions in this document.

When users opt out of ATT, all Facebook Login traffic will be performed on the limited login domain via the in-app browser. Limited Login does not support fast app switch (that is, redirecting to fb app to login). See limitations section of the Limited Login for iOS document.

We made changes both to the iOS SDK and our core login systems to support the privacy manifest requirements based on the upcoming App Transparency Tracking enforcement so that iOS users who have opted out of ATT are able to use FBLogin. As a result, we do not plan to release the privacy manifest as part of a minor update.

Esta operación autenticará tu usuario y rellenará una instancia compartida de un identificador de acceso de autenticación. La información adicional de la llamada de autenticación se utilizará para rellenar la instancia compartida del perfil de usuario con campos básicos.

Se producirá un error en la solicitud al gráfico porque no habrá ningún identificador de acceso. Para obtener un identificador de acceso, reutiliza el método de inicio de sesión clásico (que establece el seguimiento en activado de manera predeterminada) o llama a FBSDKLoginManagerlogInFromViewController:configuration:completion: con una configuración que especifique que el seguimiento está activado. Ten en cuenta que, cuando lo hagas, se realizará un seguimiento de los usuarios.

To access the Graph API, you need an access token. Either reuse the classic login method (defaults tracking to enabled), or call FBSDKLoginManager logInFromViewController:configuration:completion: with a configuration that specifies that tracking is enabled. This will allow you obtain an access token that can be used for Graph API calls. Be aware that when you do this, users are tracked. Be aware that Limited Login safeguards are not supported in this context.

When you use Limited Login to request user_friends from a user, we provide you with a list of app scoped IDs (ASIDs) associated with the friends of the authorizing user, if the friends have also granted your app the user_friends permission. Depending on how you have implemented Limited Login, some of the ASIDs on this list may represent other users that have connected to your app using Limited Login. To ensure that Limited Login safeguards are maintained for such users, do not make Graph API calls using their ASIDs. Instead, continue to rely on Limited Login for these users.

Sí. Se han añadido dos propiedades públicas:

  • loginTracking, que se puede utilizar para obtener o establecer la preferencia de seguimiento deseada para los intentos de inicio de sesión. De forma predeterminada, se establece en .enabled.

  • nonce, que se puede utilizar para obtener o establecer una cadena opcional para los intentos de inicio de sesión. Una cadena válida no puede estar vacía ni contener espacios en blanco. Nota: No se establecerá ninguna cadena no válida. En su lugar, se utilizarán cadenas únicas predeterminadas para los intentos de inicio de sesión.

No existe ningún cambio desde la perspectiva del usuario. Internamente, establecerá los elementos AuthenticationToken, AccessToken y Profile actuales en valores nulos.

El inicio de sesión limitado no está disponible para tvOS actualmente.

No. No estamos desarrollando el inicio de sesión limitado para el SDK para React Native, dado que se retirará en la versión 9.0 del SDK. Para obtener más detalles, consulta la documentación sobre React Native.

There is no impact to existing logged in users from adopting Limited Login in your app. If you would like to take advantage of Limited Login safeguards for existing, logged-in users, you must log them out by so they can log back in with Limited Login.

No. El elemento fb_login_id sigue estando presente en el modo de inicio de sesión limitado. Es el identificador de acceso de usuario (entidad independiente) que se ha cambiado por un identificador OIDC en el modo de inicio de sesión limitado.

El modo de inicio de sesión limitado solo admite los permisos de perfil básico (nombre y foto) y de correo electrónico. Si tu aplicación requiere permisos empresariales, no puedes utilizar el inicio de sesión limitado para solicitarlos. No obstante, tus usuarios pueden realizar las siguientes acciones para conceder permisos empresariales en el modo de inicio de sesión clásico:

  • Iniciar sesión en tu aplicación a través de la web.
  • Iniciar sesión en tu aplicación a través de iOS en el modo de inicio de sesión clásico.
  • Iniciar sesión en tu aplicación a través de Android.

Yes, but this will require the use of an app access token to request the token_for_business field on the User node. Limited Login safeguards are not supported in this context. For apps that are associated with your business by means of Business Manager, you can use the app-scoped ID (ASID) included in the OIDC token returned after a successful login to get a unique string for a user. Using your app's app access token, request the token_for_business field on the User node and pass in the user's app-scoped ID. This call returns a string which is the same for this user across all the apps managed by the same Business Manager.

GET /ASID?fields=token_for_business

This returns the values.

{
  "id": "1234567890"
  "token_for_business": "weg23ro87gfewblwjef"
}

Usage notes:

  • The person being queried must have logged into this app.
  • If the owning business changes, the value of token_for_business will also change
  • If you request the token_for_business field and the app is not associated with a Business Manager, the call returns an error.
  • The value returned by token_for_business is a token, not an ID - it cannot be used directly against the Graph API to access a person's information. You should still store the ID in your database.