getOauthProviders method
Get details about Oauth providers for a user.
Sign the provided TGetOauthProvidersBody with the client's stamp function and submit the request (POST /public/v1/query/get_oauth_providers).
See also: stampGetOauthProviders.
Implementation
Future<TGetOauthProvidersResponse> getOauthProviders({
required TGetOauthProvidersBody input,
}) async {
return await request<TGetOauthProvidersBody, TGetOauthProvidersResponse>(
"/public/v1/query/get_oauth_providers",
input,
(json) => TGetOauthProvidersResponse.fromJson(json));
}