Returns a list of linked accounts that are associated with the specified service providers.Customization can be done via UserOptions. Create this object with
com.meta.horizon.platform.ovr.options.UserOptions#UserOptions(). 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);