Stefano Bosio

Results 7 comments of Stefano Bosio

Hi @JDDV, Have you tried extending FlutterFragmentActivity as your main activity in android\app\src\main\kotlin\com\example\myapp\MainActivity.kt ? I mean this piece `class MainActivity : FlutterFragmentActivity() {...}` because FlutterFragmentActivity triggers the problem. Thank you!

I Have the same issue. On firefox gets a screenshot then blocks. On chrome just black screen

I confirm that updating the library solved the issue mee too. The documentation must be updated.

Hello Ostiwe, thank you. I already found that method and I'm using that both in Grant Flows and in Controllers. What I **don't like** with this approach is that `respondToAccessTokenRequest`...

If someone has the needing to customize the Bearer token's content here's how I bypassed the limitation: 1) override services with my own repository: **_services.yaml_** ``` Trikoder\Bundle\OAuth2Bundle\League\Repository\AccessTokenRepository: class: App\Repository\AccessTokenRepository League\OAuth2\Server\Repositories\AccessTokenRepositoryInterface:...

Hello @lud, thank you for your reply. Actually getExtraParams() doesn't add any claim to the token but it adds extra keys to the json response. What I'm looking for is...

Sure, no problem. I need data to be validated in Bearer instead of passing them directly in the response. Anyway, my solution above works and I could temporary solve the...