ovr_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 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); ovrMessage_User_GetLinkedAccounts will be generated in response.
ovrRequest ovr_User_GetLinkedAccounts(ovrUserOptionsHandle userOptions)