mirror of https://github.com/caronc/apprise
space separated; not comma
parent
14b361313d
commit
ad3ef7d3bc
|
@ -508,9 +508,7 @@ class NotifySlack(NotifyBase):
|
||||||
# First we need to acquire a code
|
# First we need to acquire a code
|
||||||
params = {
|
params = {
|
||||||
'client_id': self.client_id,
|
'client_id': self.client_id,
|
||||||
'scope': ','.join(self.slack_v2_oauth_scopes),
|
'scope': ' '.join(self.slack_v2_oauth_scopes),
|
||||||
# Out of Band
|
|
||||||
'redirect_uri': 'urn:ietf:wg:oauth:2.0:oob',
|
|
||||||
}
|
}
|
||||||
|
|
||||||
# Sharing this code with the user to click on and have a code generated
|
# Sharing this code with the user to click on and have a code generated
|
||||||
|
@ -523,6 +521,7 @@ class NotifySlack(NotifyBase):
|
||||||
# try:
|
# try:
|
||||||
# r = requests.get(
|
# r = requests.get(
|
||||||
# get_code_url,
|
# get_code_url,
|
||||||
|
# headers=headers,
|
||||||
# verify=self.verify_certificate,
|
# verify=self.verify_certificate,
|
||||||
# timeout=self.request_timeout,
|
# timeout=self.request_timeout,
|
||||||
# )
|
# )
|
||||||
|
|
Loading…
Reference in New Issue