Vincent Pizzo

Results 69 issues of Vincent Pizzo

The player is great and I'm using it in my new project to send push to talk messages. If the audio file is greater than a certain length, everything works...

bug

Right now if I set my redirect uri to 'urn:ietf:wg:oauth:2.0:oob', I can never receive a token due to the logic in OAuthDialogFragment#interceptUrlCompat. It would be nice in the AuthorizationFlow.Builder class...

It would be nice to know before using the OAuthManager whether or not a valid Credential exists for a given user. Of course you could load the credential with the...

enhancement

It would be nice to just have the default DialogFragmentController be able to accept a title (preferably in the constructor) rather than override the onPrepareDialog method to set it. I...

enhancement

I'd like to start out by saying very nice library! The code is also very well written and incredibly easy to follow and I appreciate that a ton! Right now,...

enhancement

We want to be able to supply a RedisURI object instead of just a string as it works a little bit better for us and how we construct those objects....

One of the first thing our application does is start a connection pool. In some cases, the application immediately starts hitting redis _in parallel_. We occasionally see issues like the...

Thanks for the awesome library! It's working really well for us. We ping redis occasionally during our routine health check process and noticed the `PING` command was missing along with...

It would be awesome if you could create Resty with a base url. ``` java Resty r = new Resty("http://localhost/myApi"); r.json("/users") ```