我构建了一个 Python 脚本,旨在使用 python requests 库将数据上传到一个名为 Intercom 的应用程序。这个想法是在自定义属性中插入一个全新的字段,其中包含我们需要为我们的自动消息传递关闭的数据。
脚本很长,但是破坏的方法如下:
def post_user(self, input_user, session=None):
"""
:param user: a JSON object with all the user pieces needed to be posted to the endpoint
:param session: a Requests session to be used. If None we'll create one
"""
if not session:
session = self.create_requests_session()
else:
session = session
# JSON encode the user
payload = json.dumps(input_user, sort_keys=True, indent=2, separators=(',', ': '))
print(payload) # DEBUG CODE
# Post the data to endpoint
response = session.post(self.endpoint, data=payload)
# This will raise a status code on a bad status code
response.raise_for_status()
下面也是方法create_requests_session()
:
def create_requests_session(self):
"""
Start a requests session. Set Auth & Headers so we don't have to send it with each request
:return: A new requests.Session object with auth & header values prepopulated.
"""
session = requests.Session()
session.auth = (self.app_id, self.api_key)
session.headers = {'Content-Type': 'application/json', 'accept': 'application/json'}
return session
当我运行整个脚本并逐步执行第一个脚本时,input_user
它以字典的形式出现,看起来像。(注意:数据是匿名的,但结构保持完全相同):
{'user_id': '123456',
'email': 'foo@bar.com',
'custom_attributes': {
'test_cell' : 'Variation'}
}
但是,在将用户传递给json.dumps(user)
然后通过 POST 请求发送之后,我收到了 404 错误。
这是奇怪的部分。我用完全相同的 JSON 发送了这个完全相同的用户,除了我使用 Python 控制台创建了所有部分(注意,为了保持用户数据的匿名性,有些行被隐藏了):
In[82]: sesh = requests.session()
In[86]: header
Out[86]: {'Content-Type': 'application/json', 'accept': 'application/json'}
In[87]: sesh.headers = header
In[89]: payload = json.dumps(update_user)
In[91]: response = sesh.post(endpoint, data=payload)
In[92]: response
Out[92]: <Response [200]>
在这一点上,我完全迷失了。我试图设置一个代理来尝试逐字节比较请求,但没有太多运气。非常感谢任何帮助或见解。