Open
Description
The documentation for Loopback IP address (macOS, Linux, Windows desktop) states that
To receive the authorization code using this URL, your application must be listening on the local web server.
However most of the samples for this library use.
flow = InstalledAppFlow.from_client_secrets_file(
'/content/peopleapipublic-fc597768cf57.json', SCOPES)
When code using this method runs it will attempt to open a web browser window which returns a 404 not found as the samples do not describe how to listen on the local web server. so the code fails in most cases.
Please supply some documentation for use with installed applications that shows how to setup this local web server in order to no longer get a 404 error message when running applications.