OAuth 2.0 for desktop and mobile applications

前端 未结 2 719
醉梦人生
醉梦人生 2020-12-31 18:33

I\'m doing research on OAuth 2.0 protocol.

I came stuck in the problem of generating bearer tokens for desktop/mobile applications that don\'t run on a web server.

2条回答
  •  一整个雨季
    2020-12-31 18:58

    I have a c# desktop application where I had a similar problem. I was not getting proper answers on how to implement OAuth in desktop applications. To solve this issue I used inbuilt webbrowser control and read the auth code by reading the callback URL and generate the token. But a few months back the sites like Shopify, eBay, and QBO stopped supporting the IE11 and older version, and unfortunately, that inbuilt webbrowser control uses the libraries of IE11 so I was again stuck.

    To overcome all the hurdles I implemented the c# listeners and it solved the issue permanently and now my app is browser-independent.

    You can watch my complete video on that here and also can download the sample project from here.

提交回复
热议问题