API reference
API reference
Select your platform
No SDKs available
No versions available

OvrPlatform_User_GetLinkedAccounts Function

Returns a list of linked accounts that are associated with the specified service providers.
Customization can be done via UserOptions. Create this object withFOvrUserOptions. The params that could be used are:
  1. FOvrUserOptions::ServiceProviders.Emplace() - returns the list of linked accounts that are associated with these specified service providers.
Example custom C++ usage:
<codeblock> auto options = ovr_UserOptions_Create(); ovr_UserOptions_AddServiceProvider(options, ovrServiceProvider_Google); ovr_UserOptions_AddServiceProvider(options, ovrServiceProvider_Dropbox); ovr_User_GetLinkedAccounts(options); ovr_UserOptions_Destroy(options); 

Signature

void OVRPLATFORM_API OvrPlatform_User_GetLinkedAccounts(UGameInstance *GameInstance, FOvrUserOptions UserOptions, OvrPlatform_User_GetLinkedAccounts_Delegate &&Delegate)

Parameters

GameInstance: UGameInstance *
UserOptions: FOvrUserOptions
Delegate: OvrPlatform_User_GetLinkedAccounts_Delegate &&

Returns

void OVRPLATFORM_API