@JackieQu
2018-09-21T18:38:47.000000Z
字数 1011
阅读 288
儿童编程
Method | Resource URL |
---|---|
POST | /server/userinfo/fix_group_userinfo/ |
curl -X POST -H 'Authorization: Token admin123' -d data{...}
localhost:8000/server/userinfo/fix_group_userinfo/
# 正式服上对应的pk
# 买scratch的
{
"owners": ["1111", "2222", "3333"],
"activity": 2,
"price": 99
}
# 买python的
{
"owners": ["1111", "2222", "3333"],
"activity": 18,
"price": 99
}
# 买游戏的
{
"owners": ["1111", "2222", "3333"],
"activity": 10,
"price": 59
}
Method | Resource URL |
---|---|
POST | /program_face2face/userinfo/fix_group_record/ |
curl -X POST -H 'Authorization: Token admin123' -d data{...}
localhost:8000/program_face2face/userinfo/fix_group_record/
# 正式服上对应的pk
# 买scratch的
{
"owners": ["1111", "2222", "3333"],
"tag": "Scratch1st",
"content": "Scratch特辑",
"kind": "course"
}
# 买python的
{
"owners": ["1111", "2222", "3333"],
"tag": "Python5th",
"content": "Python语言入门(上)",
"kind": "course"
}
# 买游戏的
{
"owners": ["1111", "2222", "3333"],
"tag": "Game1st",
"content": "编程冒险岛",
"kind": "game"
}
目前是统计好列表通过脚本发的
server/scripts/notify_bamaying.py