This commit is contained in:
xieshen 2021-01-30 21:43:02 +08:00
commit 0c82a05159
4 changed files with 10 additions and 8 deletions

BIN
.DS_Store vendored

Binary file not shown.

View File

@ -10,11 +10,12 @@ from yunpian_python_sdk.ypclient import YunpianClient
from aliyunsdkdyvmsapi.request.v20170525 import SingleCallByTtsRequest from aliyunsdkdyvmsapi.request.v20170525 import SingleCallByTtsRequest
from aliyunsdkcore.client import AcsClient from aliyunsdkcore.client import AcsClient
import uuid import uuid
import json
from aliyunsdkcore.profile import region_provider from aliyunsdkcore.profile import region_provider
def send_tnps(phones, content): 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, r = requests.post(url,
auth=HTTPBasicAuth( auth=HTTPBasicAuth(
'1500015491', 'd5c793535529b6dc55d00b22302bad64'), '1500015491', 'd5c793535529b6dc55d00b22302bad64'),
@ -25,7 +26,8 @@ def send_tnps(phones, content):
"title": content, "title": content,
"content": '' "content": ''
}, },
"message_type": "notify" "message_type": "notify",
"account_push_type": 1
}) })
return r 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') # '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( # og_title, og_description, og_url, og_image = parse(
# 'http://www.gov.cn/xinwen/2020-10/13/content_5550906.htm') # 'http://www.gov.cn/xinwen/2020-10/13/content_5550906.htm')
og_title, og_description, og_url, og_image = parse( # og_title, og_description, og_url, og_image = parse(
'http://gansu.gansudaily.com.cn/system/2021/01/25/030261998.shtml') # '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')) # print(send_voice_notify('13993199566'))
# r = send_tnps(['13609346975'], '') r = send_tnps(['13609346975'], 'conteeeeent')
# print(r.status_code, r.text) print(r.status_code, r.text)

View File

@ -72,7 +72,7 @@ def create_task(request):
if profile and profile.status == 1: if profile and profile.status == 1:
content = '%s在群组“%s”发布了任务,请查收消息' % (profile, g.name) content = '%s在群组“%s”发布了任务,请查收消息' % (profile, g.name)
Notice.create_normal_notice(u.user_id, content, group) Notice.create_normal_notice(u.user_id, content, group)
send_tnps([u.username], content) # send_tnps([u.username], content)
return JsonResponse({'status': 'success'}) return JsonResponse({'status': 'success'})