Luke Oliff
Luke Oliff
Thanks @r4pt0s that would be very helpful
@git-srinivas I would like to be able to log in to GitHub from the Nuxt application, hopefully without the need for a backend. If you need a backend, please create...
No, you should use GitHub OAuth2 workflow
Hi and yes. I should have updated the issue when you first showed interest, sorry for the lack of info. There are a few ways to connect to GitHub APIs....
I need to get the key factory in and documented before this, and I may change this to be a method users can call rather than automatically reconnect
Oh it's possible this is different as of #273, I can't remember if I replaced this code or moved it
Great feedback, thank you! I love how David has documented the examples on the other SDK, so I may take and use his format
@ryanleecode can you spell out exactly what it is that is not working?
There is an issue with the websocket package we're using, whereby it suppresses the connection errors and just emits an error. Very frustrating! I'm looking to replace it entirely with...
Our API does not support base64, sorry. You might try decoding it before sending. Something like this may work? (Untested code) ``` const bytes = atob(base64); const byteArrays = [];...