FusionAuth / fusionauth-client-builder

The FusionAuth client library builder
https://fusionauth.io/
Apache License 2.0
6 stars 24 forks source link

api to retrieve identity provider by type #27

Closed avinashsingh2 closed 3 years ago

avinashsingh2 commented 3 years ago

added API for retrieving identity provider by type.

mooreds commented 3 years ago

Thanks for the PR @avinashsingh2 !

I need to take a look and build some other client libs from it, but will do that in the next few days.

avinashsingh2 commented 3 years ago

thanks @mooreds!

robotdan commented 3 years ago

Thanks @avinashsingh2 - appreciate the contribution!

mooreds commented 3 years ago

@robotdan did you test this out? I had to add an import to src/main/java/io/fusionauth/client/FusionAuthClient.java in https://github.com/fusionauth/fusionauth-java-client to get it to compile:

import io.fusionauth.domain.provider.IdentityProviderType;

No issues with golang or netcore, they compiled just fine.

robotdan commented 3 years ago

I did, I have that change locally - it will go up with my next push to master.

avinashsingh2 commented 3 years ago

Thanks, @robotdan