mironal
mironal
@mattdonnelly Thanks for the great library. I was a Swifter user. I appreciate the contributors. @jianming-work I have created and am still maintaining a new TwitterAPI library for Swift this...
It seems that the cause is that `$PATH` does not contain `/opt/homebrew/bin` in Xcode's Run Script. I added the following code before running mint. ```sh ## begin if [ `uname...
Thanks for reporting. I'll look into it.
Thanks your question. 😄 This module uses "did-get-redirect-request" to detect OAuth 2 redirects, but this event was deleted from electron 3.0.0. https://electronjs.org/releases#3.0.0 I plan to update this module for electron...
@hablema Please try v3.0.0. I fixed this problem 😃 https://www.npmjs.com/package/electron-oauth-helper/v/3.0.0
Unfortunately, I do not offer index.d.ts, but I'd like to offer it. As comments are written in esdoc format, simple type completion can be done with a corresponding editor such...
Thanks to your question! `client_id` is required parameter. Did you configure this? https://github.com/mironal/electron-oauth-helper/blob/master/example/src/main/config.example.js may help to you.
Which OAuth Provider are you using?
Do you set `response_type` parameter ? and, Is there a similar error even if I run it in the example program? (Do not forget to rename config.example.js to config.js)
Hmm. I tried Google's OAuth2 using example code, but no error `client_id is required for code` occurred. You need to set "response_type" like the following code. ```js const GoogleClientWebApp =...