Mark Fickett

Results 9 comments of Mark Fickett

@jonpeterson Thanks for sharing that! I was trying to use `onHalfClose` etc and finding they did nothing. In the implementation you shared, is the `LoggingServerCallListener` superfluous? It's what you'd want...

Hello, Xoogler here missing go links. I'm also having trouble getting this running. I tried: ``` # from the comment above % GOPATH=`pwd` go get github.com/kellegous/go/cmd/go $GOPATH/go.mod exists but should...

I was able to run the Docker container: ```bash git clone https://github.com/kellegous/go.git cd go docker image build -t kellegous-go:1.0 . docker container run --publish 8067:8067 --detach --name go kellegous-go:1.0 ```...

Thanks @simplesteph for the pointer. It looks like https://github.com/saturnism/grpc-by-example-java/blob/master/error-handling-example/error-server/src/main/java/com/example/grpc/server/ErrorServiceImpl.java#L33 is they key example: ```java @Override public void customException(EchoRequest request, StreamObserver responseObserver) { try { throw new CustomException("Custom exception!"); } catch...

I ran into this too, and fixed it by adding to trusted origins. I was confused because I'd listed my domain for my app (as both callback and logout URLs),...

It looks like there hasn't been action for > 1y, is this still under consideration? I see @okta/okta-vue is in https://github.com/okta/okta-vue not in this repo. Should this issue be moved...

@goatandsheep Thanks for the fast response! I'm confused though. The checkboxes at the top are under a "I'm submitting this issue for the package(s):" heading, I thought that just meant...

In case it's helpful, here's my `src/testing/fakeokta.ts`. Very basic but works for me for now. ```ts /* eslint-disable */ // Many unused parameters and uses of any. /** * A...

Thanks for the quick reply. I didn't realize this was part of the OpenID spec. Then `history` mode it is, though I'll be interested to hear if you develop a...