michaeldabbott
michaeldabbott
You can change this in your privacy settings, to individually over-write the preferences. try and open the app go to settings, privacy, click the pad lock and then you should...
> > You can change this in your privacy settings, to individually over-write the preferences. > > try and open the app > > go to settings, privacy, click the...
@ejstembler Did you manage to resolve this by the way? I'm running into a similar issue myself.
> > @ejstembler Did you manage to resolve this by the way? I'm running into a similar issue myself. > > @michaeldabbott No, I eventually gave up and decided against...
@ejstembler Actually found the solution. Running go mod vendor and flattening the dependency tree fixed the issue for me. Just incase you ever wanted to re-vist it.
@casualjim Think the outstanding issue was this following error - cannot use newTransport() (type *customTransport) as type "github.com/go-openapi/runtime".ClientTransport in argument to "fleet_map/client".New: *customTransport does not implement "github.com/go-openapi/runtime".ClientTransport (missing Submit method)
There is a scenario where you have a multiple tenantId and the user you're logging into belongs a tenant that you're not passing in. so for example if you have...
Pretty sure this is related to the issue I'm having currently. A request to CreateUser returns zero validation errors but err is equal to EOF. This is also occurs when...
@robotdan The status code is 200 when err is equal to EOF on the login function. That's using insomnia. This occurs with both the Login and CreateUser functions. using go...
@robotdan ` response, error, err := a.fusionAuth.CreateUser("", request) if error != nil || err != nil { return nil, err } return response, nil ` the err object is the...