forked from MortyFx/alidayu
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
import json module and fixed json ascii ensure
- Loading branch information
Patrick95
committed
Oct 12, 2016
1 parent
70addff
commit f0e73aa
Showing
2 changed files
with
37 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# -*- coding: utf-8 -*- | ||
from alidayu import AlibabaAliqinFcSmsNumSendRequest | ||
import json | ||
|
||
# 其中appkey和secret是必须的参数 | ||
# url可选,默认为沙箱的URL,正式应用请传入 https://eco.taobao.com/router/rest | ||
# partner_id为可选,其值为下载的TOP SDK中的top/api/base.py里的SYSTEM_GENERATE_VERSION | ||
|
||
appkey = '' | ||
secret = '' | ||
url = 'https://eco.taobao.com/router/rest' | ||
partner_id = '' #可选 | ||
#短信内容参数 | ||
params = { | ||
'a' : '1', | ||
'b' : '2' | ||
} | ||
|
||
req = AlibabaAliqinFcSmsNumSendRequest(appkey, secret, url, partner_id) | ||
req.extend = "123456" | ||
req.sms_type = "normal" | ||
req.sms_free_sign_name = "注册验证" | ||
req.sms_param = json.dumps(params,ensure_ascii=False) | ||
req.rec_num = "13000000000" | ||
req.sms_template_code = "SMS_5410290" | ||
try: | ||
resp = req.getResponse() | ||
print(resp) | ||
except Exception as e: | ||
print(e) |