Matt A

Results 43 comments of Matt A

Hello, Thanks for the reproduction code, it's incredibly helpful. It's not looping infinitely for me, it's just incredibly slow. On my machine it is taking 24 seconds to finish validating...

HI Danack, It looks like your openapi schema is making 140 calls to load `json-schema.org/draft-04/schema` 😨. It happens during validation because references are resolved lazily. You can setup [caching](http://json-reference.thephpleague.com/caching) but...

Hello, > Hi, just reading this issue through. Does this mean I can validate (pretty simple) Draft 6 schemas with json-guard? Not yet. [json-reference](http://json-reference.thephpleague.com/) will mostly work with Draft 6...

Draft 7 support would be great. This was discussed a bit in #114. I don't have time personally at the moment to implement it but contributions are welcome. > Also...

Hello 👋 You can follow this issue; I will close it once the feature is implemented. We could add a new getter to retrieve the sub schema errors in a...

Hello, I think there are a few way to solve this. One option would be to modify your schema to allow loose types. This has the benefit of making it...

There's some discussion in #194 about how maybe the prompt shouldn't jump down as the # of results is reduced. I personally think that makes sense and it would prevent...

They are still going back and forth about it on the mailing list but currently the recommendation is to [not issue refresh tokens to public clients](https://tools.ietf.org/html/draft-parecki-oauth-browser-based-apps-02#section-8). Assuming the IETF sticks...

If anyone else reads this thread wondering about the status of the original issue, the client_secret was no longer required for the password grant in [5.0.0-RC1](https://github.com/thephpleague/oauth2-server/blob/master/CHANGELOG.md#500-rc1---2016-03-24). > Password grant updated...

~~Apparently this was changed back at some point, as Version 8.0 [requires the client_secret for the password grant](https://github.com/thephpleague/oauth2-server/blob/e1dc4d708c56fcfa205be4bb1862b6d525b4baac/src/Grant/PasswordGrant.php#L52).~~ Nevermind, I misunderstood the 8.0 changes. It should still work on 8.0...