Fix missing parameter in typetalk module
This commit is contained in:
parent
a55dbb717c
commit
c7f7698fdc
1 changed files with 3 additions and 3 deletions
|
@ -72,14 +72,14 @@ def do_request(module, url, params, headers=None):
|
||||||
raise exc
|
raise exc
|
||||||
return r
|
return r
|
||||||
|
|
||||||
def get_access_token(client_id, client_secret):
|
def get_access_token(module, client_id, client_secret):
|
||||||
params = {
|
params = {
|
||||||
'client_id': client_id,
|
'client_id': client_id,
|
||||||
'client_secret': client_secret,
|
'client_secret': client_secret,
|
||||||
'grant_type': 'client_credentials',
|
'grant_type': 'client_credentials',
|
||||||
'scope': 'topic.post'
|
'scope': 'topic.post'
|
||||||
}
|
}
|
||||||
res = do_request('https://typetalk.in/oauth2/access_token', params)
|
res = do_request(module, 'https://typetalk.in/oauth2/access_token', params)
|
||||||
return json.load(res)['access_token']
|
return json.load(res)['access_token']
|
||||||
|
|
||||||
|
|
||||||
|
@ -88,7 +88,7 @@ def send_message(module, client_id, client_secret, topic, msg):
|
||||||
send message to typetalk
|
send message to typetalk
|
||||||
"""
|
"""
|
||||||
try:
|
try:
|
||||||
access_token = get_access_token(client_id, client_secret)
|
access_token = get_access_token(module, client_id, client_secret)
|
||||||
url = 'https://typetalk.in/api/v1/topics/%d' % topic
|
url = 'https://typetalk.in/api/v1/topics/%d' % topic
|
||||||
headers = {
|
headers = {
|
||||||
'Authorization': 'Bearer %s' % access_token,
|
'Authorization': 'Bearer %s' % access_token,
|
||||||
|
|
Loading…
Reference in a new issue