paveldanichev

Results 2 issues of paveldanichev

### I'm submitting a - [X ] bug report - [ ] feature request ### Background info When verifying an access token, the verifier contacts the issuer URL to get...

OKTA-741804

Example `.env` file: ``` key1=value1 key2="value2" key3='value3' ``` Usage code: ``` Dotenv dotenv = Dotenv.load(); System.out.println(dotenv.get("key1")); System.out.println(dotenv.get("key2")); System.out.println(dotenv.get("key3")); ``` Output: ``` value1 value2 'value3' ``` The single quotes around value3...