我正在编写一个与 Google API 交互并需要通过 oauth2 进行用户身份验证的 Python 应用程序。
我目前正在设置一个本地身份验证服务器,以从 Google 的 oauth 服务器接收 oauth2 身份验证代码,基本上是像这样进行 oauth dance。
它通常工作得很好,但我想我不明白它是如何与我的端口交互的,因为即使其他一些应用程序(在我的测试中,SABNzbd++ ) 正在使用该端口。
我认为将端口分配给使用的端口号会导致错误并重试。我做错了什么(或者,SABNzbd++ 做了什么让我的应用程序隐藏了它正在侦听端口 8080 的事实?)
相关代码如下。
import socket
import BaseHTTPServer
from oauth2client.tools import ClientRedirectServer, ClientRedirectHandler
port_number = 0
host_name = 'localhost'
for port_number in range(8080,10000):
try:
httpd = ClientRedirectServer((host_name, port_number),
ClientRedirectHandler)
except socket.error, e:
print "socket error: " + str(e)
pass
else:
print "The server is running on: port " + str(port_number)
print "and host_name " + host_name
break
为了澄清,以下是我的预期结果
socket error: [port already in use] (or something like that)
The server is running on: port 8081
and host_name localhost
然后转到 localhost:8080 解析为 SABnzbd+,然后 localhost:8081 解析为我的身份验证服务器。
但是,我得到了:
the server is running on: port 8080
and host_name localhost
但去 localhost:8080 会解析为 SABNzbd+
提前致谢!