-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ResendEmailVerification(): Always getting 401 #55
Comments
I've found that using the following, it seems to work:
Is that how to use this method? Any ideas / advice is appreciated. |
@markschmid do you have multiple tenants in FusionAuth? If so, you'll need to set the tenant Id using the header, or use a tenant based API key. More on that here: https://fusionauth.io/docs/v1/tech/apis/authentication/#making-an-api-request-using-a-tenant-id It does look like we don't have a client method for anonymous sending of the email verification, though it is possible using the rest client directly. I'll file an issue.
I'm no golang expert, but from the code here: https://github.com/FusionAuth/go-client/blob/master/pkg/fusionauth/Client.go#L2681 It looks like
I'm not quite clear what you are looking for, but for general support with FusionAuth, we recommend posting to the forum: https://fusionauth.io/community/forum/ |
Thanks. Since the verification call succeeds, I’m just confused about the EOF err. All other client methods i’ve used so far are not returning an err when they succeed. For now, I‘m just checking the err and consider EOF still successful. |
Thanks @markschmid . Let's leave this open so next time we take a pass though the golang client we can review. |
Shouldn't this method use
StartAnonymous()
?Currently it's using an API-Key and I always run into a 401 without further information.
Checking the API manually (with a REST client) it seems that providing an API Key is the cause for the 401.
Instead of API Key, the API wants an
X-FusionAuth-TenantId
in the header.How to achieve that using the go-client? Can I create a client using
NewClient()
without an API Key and set its headers?Thanks in advance!
go-client/pkg/fusionauth/Client.go
Line 2685 in 7e32142
The text was updated successfully, but these errors were encountered: