1

此代码可在线使用,用于在linkedin 中运行您的连接图。这使用linkedin api。我能够正常连接,并且一切运行正常,直到最后一个脚本将数据实际写入 csv。

每当我运行代码时

import oauth2 as oauth
import urlparse
import simplejson
import codecs

CONSUMER_KEY = "xxx"
CONSUMER_SECRET = "xxx"
OAUTH_TOKEN = "xxx"
OAUTH_TOKEN_SECRET = "xxx"

OUTPUT = "linked.csv"

def linkedin_connections():

    # Use your credentials to build the oauth client
consumer = oauth.Consumer(key=CONSUMER_KEY, secret=CONSUMER_SECRET)
token = oauth.Token(key=OAUTH_TOKEN, secret=OAUTH_TOKEN_SECRET)
client = oauth.Client(consumer, token)

# Fetch first degree connections
resp, content = client.request('http://api.linkedin.com/v1/people/~/connections?format=json')
results = simplejson.loads(content)    

# File that will store the results
output = codecs.open(OUTPUT, 'w', 'utf-8')

# Loop thru the 1st degree connection and see how they connect to each other
for result in results["values"]:
    con = "%s %s" % (result["firstName"].replace(",", " "),    result["lastName"].replace(",", " "))
    print >>output, "%s,%s" % ("John Henry",  con)

# This is the trick, use the search API to get related connections
    u = "https://api.linkedin.com/v1/people/%s:(relation-to-viewer:(related-connections))?format=json" % result["id"]
    resp, content = client.request(u)
    rels = simplejson.loads(content)
try:
for rel in rels['relationToViewer']['relatedConnections']['values']:
    sec = "%s %s" % (rel["firstName"].replace(",", " "), rel["lastName"].replace(",", " "))
    print >>output, "%s,%s" % (con, sec)
except:
    pass

if __name__ == '__main__':
    linkedin_connections()     

for result in results["values"]:
    KeyError: 'values'

当我运行它时,我收到一条错误消息:

Traceback (most recent call last):

File "linkedin-2-query.py", line 51, in <module>
linkedin_connections()
File "linkedin-2-query.py", line 35, in linkedin_connections
for result in results["values"]:
KeyError: 'values'

任何建议或帮助将不胜感激!

4

1 回答 1

0

我在使用 Gephi 可视化您的 LinkedIn 图表 - 第 1 部分的帖子中遇到了同样的问题。

每当请求 dict() 对象(使用格式 a = adict[key])并且键不在字典中时,Python 都会引发 KeyError。 KeyError - Python 维基

经过一番搜索并添加了一些打印语句后,我意识到我的 OAuth 会话已过期,因此我linkedin-2-query.py脚本中的 OAuth 令牌不再有效。

"values"由于 OAuth 令牌无效,LinkedIn API 不会像脚本期望的那样返回带有密钥的字典。相反,API 返回字符串'N'。Python 尝试"values"在字符串中查找 dict 键'N',失败,并生成KeyError: 'values'.

因此,一个新的、有效的 OAuth 令牌和密钥应该让 API 返回一个包含连接数据的字典。


linkedin-1-oauth.py再次运行该脚本,然后访问 LinkedIn应用程序详细信息页面以查找我的新 OAuth 令牌。(屏幕截图省略了我的应用程序的值。您应该看到每个 Key、Token 和 Secret 的字母数字值。)

在此处输入图像描述

...

在此处输入图像描述

然后我使用新的OAuth 用户令牌OAuth 用户密码更新我的linkedin-2-query.py脚本

OAUTH_TOKEN = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" # your updated OAuth User Token
OAUTH_TOKEN_SECRET = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" # your updated OAuth User Secret

更新 OAuth 令牌和密码后,我立即运行我的linkedin-2-query.py脚本。万岁,它运行没有错误,并从 API 检索我的连接数据。

于 2013-06-09T19:56:52.220 回答