diff --git a/.DS_Store b/.DS_Store index 564a53d..5462d4a 100644 Binary files a/.DS_Store and b/.DS_Store differ diff --git a/polls/utils.py b/polls/utils.py index 2e2ab57..00716a4 100644 --- a/polls/utils.py +++ b/polls/utils.py @@ -10,11 +10,12 @@ from yunpian_python_sdk.ypclient import YunpianClient from aliyunsdkdyvmsapi.request.v20170525 import SingleCallByTtsRequest from aliyunsdkcore.client import AcsClient import uuid +import json from aliyunsdkcore.profile import region_provider def send_tnps(phones, content): - url = 'https://api.tpns.tencent.com//v3/push/app' + url = 'https://api.tpns.tencent.com/v3/push/app' r = requests.post(url, auth=HTTPBasicAuth( '1500015491', 'd5c793535529b6dc55d00b22302bad64'), @@ -25,7 +26,8 @@ def send_tnps(phones, content): "title": content, "content": '' }, - "message_type": "notify" + "message_type": "notify", + "account_push_type": 1 }) return r @@ -167,10 +169,10 @@ if __name__ == '__main__': # 'https://m.toutiao.com/i6883651337003729420/?tt_from=weixin&utm_campaign=client_share&app=news_article&utm_source=weixin&iid=1494959660475024&utm_medium=toutiao_android&wxshare_count=1') # og_title, og_description, og_url, og_image = parse( # 'http://www.gov.cn/xinwen/2020-10/13/content_5550906.htm') - og_title, og_description, og_url, og_image = parse( - 'http://gansu.gansudaily.com.cn/system/2021/01/25/030261998.shtml') + # og_title, og_description, og_url, og_image = parse( + # 'http://gansu.gansudaily.com.cn/system/2021/01/25/030261998.shtml') - print(og_title, og_description, og_url, og_image) + # print(og_title, og_description, og_url, og_image) # print(send_voice_notify('13993199566')) - # r = send_tnps(['13609346975'], '') - # print(r.status_code, r.text) + r = send_tnps(['13609346975'], 'conteeeeent') + print(r.status_code, r.text) diff --git a/polls/views/__pycache__/media.cpython-38.pyc b/polls/views/__pycache__/media.cpython-38.pyc index 6831a5b..e209e05 100644 Binary files a/polls/views/__pycache__/media.cpython-38.pyc and b/polls/views/__pycache__/media.cpython-38.pyc differ diff --git a/polls/views/task.py b/polls/views/task.py index 8398ec6..ac19416 100644 --- a/polls/views/task.py +++ b/polls/views/task.py @@ -72,7 +72,7 @@ def create_task(request): if profile and profile.status == 1: content = '%s在群组“%s”发布了任务,请查收消息' % (profile, g.name) Notice.create_normal_notice(u.user_id, content, group) - send_tnps([u.username], content) + # send_tnps([u.username], content) return JsonResponse({'status': 'success'})