openai-token icon indicating copy to clipboard operation
openai-token copied to clipboard

Results 5 openai-token issues
Sort by recently updated
recently updated
newest added

Is it possible to do this for authentication with Google? Obtain the necessary token and cookies through the Google login

How to solve this error? `cause: [Error: write EPROTO C0D712264B7F0000:error:0A000410:SSL routines:ssl3_read_bytes:sslv3 alert handshake failure:ssl/record/rec_layer_s3.c:1600:SSL alert number 40 ] { errno: -71, code: 'EPROTO', syscall: 'write' }`

I am in China and cannot access OpenAI directly. Can you provide access to OpenAI through a proxy? I set the httpsAgent for axios, but the code reported an error...

My code is exactly the same as the example ```javascript import Authenticator from 'openai-token' const auth = new Authenticator('valid-email', 'valid-password') await auth.begin() const token = await auth.getAccessToken() console.log(token) ``` There...