1

Pythonコードを使用してlinkedin APIにアクセスしようとしています。Windowsマシンで実行しているコードは次のとおりです。

from linkedin import server
import webbrowser
API_KEY = "<API_KEY>"
API_SECRET = "<API_SECRET>"
application = server.quick_api(API_KEY, API_SECRET)

これらのステートメントをコンソールで 1 つずつ実行していますが、実行するserver.quick_api(API_KEY, API_SECRET)と次のエラーが表示されます。

>>> application = server.quick_api(API_KEY, API_SECRET)
https://www.linkedin.com/uas/oauth2/authorization?scope=r_basicprofile%20rw_nus%20r_network%20r_contactinfo%20w_messages%20rw_groups%20r_emailaddress%20r_fullprofile&state=0b0290ff6e51e14c5409434a6e4bf52f&redirect_uri=http%3A//localhost%3A8000/&response_type=code&client_id=<API_KEY>
Traceback (most recent call last):
  File "C:\Python27\lib\site-packages\IPython\core\interactiveshell.py", line 2731, in run_code
    exec code_obj in self.user_global_ns, self.user_ns
  File "<ipython-input-9-eb867f0fb231>", line 1, in <module>
    application = server.quick_api(API_KEY, API_SECRET)
  File "C:\Users\sony\AppData\Roaming\Python\Python27\site-packages\linkedin\server.py", line 24, in quick_api
    _wait_for_user_to_enter_browser(app)
  File "C:\Users\sony\AppData\Roaming\Python\Python27\site-packages\linkedin\server.py", line 38, in _wait_for_user_to_enter_browser
    httpd = BaseHTTPServer.HTTPServer(server_address, MyHandler)
  File "C:\Python27\lib\SocketServer.py", line 419, in __init__
    self.server_bind()
  File "C:\Python27\lib\BaseHTTPServer.py", line 108, in server_bind
    SocketServer.TCPServer.server_bind(self)
  File "C:\Python27\lib\SocketServer.py", line 430, in server_bind
    self.socket.bind(self.server_address)
  File "C:\Python27\lib\socket.py", line 224, in meth
    return getattr(self._sock,name)(*args)
error: [Errno 10013] An attempt was made to access a socket in a way forbidden by its access permissions

取得するはずの URL を取得しましたが、このエラーの原因は何ですか? また、ブラウザーに URL を貼り付けると、リンクされたページに移動し、受け入れられない資格情報を要求されます(正しい資格情報を入力していると確信しています)。常に次のように表示されます。

「HTTP エラー 404。要求されたリソースが見つかりません。」

それ以外の場合は、同じ資格情報を使用してLinkedInにログインできます。

4

0 に答える 0