Version: 5.4
public void Authenticate (Action<bool> callback);

Parámetros

callback Callback that is called whenever the authentication operation is finished.

Descripción

Authenticate the local user to the current active Social API implementation and fetch their profile data.

This should be done before any other calls into the API. Depending on the platform this might trigger a potentially blocking dialog for providing login details.

On certain platforms the callback may not be invoked after the second and subsequent calls of the function during a single run of the program, provided that the user or OS cancelled the first attempt to authenticate.

using UnityEngine;
using UnityEngine.SocialPlatforms;
using System.Collections;

public class Example : MonoBehaviour { void Start() { Social.localUser.Authenticate (success => { if (success) { Debug.Log ("Authentication successful"); string userInfo = "Username: " + Social.localUser.userName + "\nUser ID: " + Social.localUser.id + "\nIsUnderage: " + Social.localUser.underage; Debug.Log (userInfo); } else Debug.Log ("Authentication failed"); }); } }