Google api oauth desktop .net library

222 Views Asked by At

Using Google apis with OAuth 2.0, Google recommends using an HttpListener for desktop apps with a note in the documentation that you may run into firewall issues. How is this implemented in their code (GoogleWebAuthorizationBroker.AuthorizeAsync), and what possible issues may arise. For example admin rights, firewall issues - will I encounter these if I use their client library?

1

There are 1 best solutions below

6
On

The local code receiver listener for the full .NET framework (desktop) starts at LocalServerCodeReceiver.cs line 374.

In v1.26+ of the library it listens on http://127.0.0.1 on a random unused non-privileged port; see line 47.

This shouldn't cause any problems with user rights, or firewalls. However, not knowing how your machines are configured means I can't be completely certain of this.