我使用OAuthLib让访问者使用LinkedIn登录我的网站。我现在想要将共享(更新)发布到他们的个人资料(as described here),我尝试使用以下代码:
xmlStr = '<share><comment>This is a comment.</comment><content><title>This is the title</title><description>This is the description</description><submitted-url>http://www.isittuesday.co.uk</submitted-url><submitted-image-url>http://stunningplaces.net/wp-content/uploads/2014/05/11-Rio-de-Janeiro-Cochabana-Beach.-Photo-by-ballnkicka.com_.jpg</submitted-image-url></content><visibility><code>connections-only</code></visibility></share>'
r = linkedInApp.post('people/~/shares', data=xmlStr, headers={'content-type': 'application/xml'})
不幸的是,这让我在第二行遇到错误,说ValueError: need more than 1 value to unpack
(在消息下方追溯)。
有人知道什么是错的吗?欢迎所有提示!
Traceback (most recent call last):
File "/Library/Python/2.7/site-packages/flask/app.py", line 1820, in wsgi_app
response = self.make_response(self.handle_exception(e))
File "/Library/Python/2.7/site-packages/flask/app.py", line 1403, in handle_exception
reraise(exc_type, exc_value, tb)
File "/Library/Python/2.7/site-packages/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/Library/Python/2.7/site-packages/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/Library/Python/2.7/site-packages/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/Library/Python/2.7/site-packages/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/Library/Python/2.7/site-packages/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/Users/kramer65/repos/v/app/views.py", line 694, in authorized
r = linkedInApp.post('people/~/shares', data=xmlStr, headers={'content-type': 'application/xml'})
File "/Library/Python/2.7/site-packages/flask_oauthlib/client.py", line 371, in post
return self.request(*args, **kwargs)
File "/Library/Python/2.7/site-packages/flask_oauthlib/client.py", line 424, in request
data, content_type = encode_request_data(data, format)
File "/Library/Python/2.7/site-packages/flask_oauthlib/client.py", line 154, in encode_request_data
return url_encode(data or {}), 'application/x-www-form-urlencoded'
File "/Library/Python/2.7/site-packages/werkzeug/urls.py", line 729, in url_encode
return separator.join(_url_encode_impl(obj, charset, encode_keys, sort, key))
File "/Library/Python/2.7/site-packages/werkzeug/urls.py", line 308, in _url_encode_impl
for key, value in iterable:
ValueError: need more than 1 value to unpack
答案 0 :(得分:1)
flask_oauthlib.client
模块中存在奇怪的行为,如果您在没有request/get/post
参数的情况下调用content_type
方法,则url_encode
是您的数据。由于您的data
参数(xmlStr
)是纯字符串,因此会出现异常。
底线,将您的通话更改为以下内容,一切正常:
r = linkedInApp.post('people/~/shares', data=xmlStr, content_type='application/xml')