I’m upgrading from slackclient
1.3.1
to 2.9.3
using this guide.
before I had this function:
JavaScript
x
8
1
def upload_file(self, file, filename, title, channel):
2
return self.slack_client.api_call(
3
"files.upload",
4
channels=channel,
5
filename=filename,
6
title=title,
7
file=file)
8
which I tried to migrate to:
JavaScript
1
8
1
def upload_file(self, file, filename, title, channel):
2
return self.web_client.api_call(
3
"files.upload",
4
json={'channels': channel,
5
'filename': filename,
6
'title': title,
7
'file': file})
8
the function is called with something like this:
JavaScript
1
3
1
with open("/vm-root/app/" + log, 'rb') as f:
2
instance.upload_file(f, log, log, channel)
3
However, I get:
Object of type ‘BufferedReader’ is not JSON serializable
I am guessing it is related to the way I pass the file
parameter. How should I be doing it?
Advertisement
Answer
Solved, the parameters were wrong:
JavaScript
1
8
1
def upload_file(self, file, filename, title, channel):
2
return self.web_client.api_call(
3
"files.upload",
4
files={'file': file},
5
data={'channels': channel,
6
'filename': filename,
7
'title': title})
8