Returns a list of linked accounts that are associated with the specified service providers.Customization can be done via UserOptions. Create this object withovr_UserOptions_Create(). The params that could be used are:Example custom C++ usage: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);
A message with type
ovrMessage_User_GetLinkedAccounts will be generated in response.First call
ovr_Message_IsError() to check if an error occurred.If no error occurred, the message will contain a payload of type
ovrLinkedAccountArrayHandle. Extract the payload from the message handle with
ovr_Message_GetLinkedAccountArray().