Navigation
API > API/Plugins > API/Plugins/OnlineServicesInterface
Some auth interfaces have more than one method for providing credentials when linking to an external account. An example usage is when the auth interface can provide a token for linking the local hardware device as the primary method before falling back to a token linked to the users online account.
| Name | UE::Online::EExternalAuthTokenMethod |
| Type | enum |
| Header File | /Engine/Plugins/Online/OnlineServices/Source/OnlineServicesInterface/Public/Online/Auth.h |
| Include Path | #include "Online/Auth.h" |
Syntax
namespace UE
{
namespace Online
{
enum EExternalAuthTokenMethod
{
Primary,
Secondary,
}
}
}
Values
| Name | Remarks |
|---|---|
| Primary | Acquire an external auth token using the primary method provided by the auth interface. |
| Secondary | Acquire an external auth token using the secondary method provided by the auth interface. |