Dan Moore
Dan Moore
@quarryman FusionAuth's client libs are pretty close to the metal and don't currently offer that functionality. I'd be happy to review a PR.
No worries, @quarryman ! We can leave this open and see if other community members chime in and want it.
@shemming sorry to hear that! We have some issues with patch support (see https://github.com/FusionAuth/fusionauth-issues/issues/441 and upvote it if it is important to you). Can you please share sample code so...
Thanks @ansonallard I looked at this API and both GETs and POSTs should work. Does that help? I'll take a todo to update it.
Thanks for the bug report. Will take a look in the next few days.
This looks like it is due to the fact this object is exported as `default class` rather than `class`. https://github.com/FusionAuth/fusionauth-typescript-client/blob/master/src/ClientResponse.ts https://stackoverflow.com/questions/33305954/typescript-export-vs-default-export
That's a good catch. We should fix it here: https://github.com/FusionAuth/fusionauth-client-builder/blob/master/src/main/api/retrieveUserInfoFromAccessToken.json I think the correct object to return would be a `UserInfoResponse` https://github.com/FusionAuth/fusionauth-client-builder/blob/master/src/main/domain/io.fusionauth.domain.oauth2.UserinfoResponse.json
@adriano-di-giovanni hmmm. The `userinfo` response is defined by the OIDC specification. Here's a couple of relevant excerpts: > Upon receipt of the UserInfo Request, the UserInfo Endpoint MUST return the...
Thanks @adriano-di-giovanni I opened up two issues in our main issue repo for tracking this. The original issue you reported is definitely a bug. If you'd like to submit a...
It is generated, you are correct. For the bug, I think the change is as simple as modifying https://github.com/FusionAuth/fusionauth-client-builder/blob/master/src/main/api/retrieveUserInfoFromAccessToken.json to have a `successResponse` of `UserinfoResponse`. The feature is a bigger...