Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
dayu_api_test
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
郭武军
dayu_api_test
Commits
1851a14d
Commit
1851a14d
authored
Jun 01, 2019
by
guoxy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Merge branch 'master' of
ssh://gitlab.bigaka.net:2287/guowj/dayu_api_test
parent
04740dd1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
40 additions
and
3 deletions
+40
-3
config.py
config.py
+8
-3
品牌库查询.py
营销中心接口测试/品牌库查询.py
+15
-0
账号修改密码.py
营销中心接口测试/账号修改密码.py
+17
-0
No files found.
config.py
View file @
1851a14d
...
...
@@ -7,14 +7,19 @@
env
=
"test"
config
=
{
"test"
:
{
"url"
:
"https://crm-b.bigaka.net/api"
,
"tunnel-token"
:
"aa8a1bfb7f6c5031d172d94b6574293ef954a6f2d4e16657da008e0cc15588fe"
"local"
:
{
"url"
:
"http://127.0.0.1"
,
"1tunnel-token"
:
"aa8a1bfb7f6c5031d172d94b6574293ef954a6f2d4e16657da008e0cc15588feD"
,
"seller-token"
:
"f80d09122733517ea4a0c2628c4eb0e9"
},
"dev"
:
{
"url"
:
"http://seller.devapi.bigaka.net"
,
"tunnel-token"
:
"aa8a1bfb7f6c5031d172d94b6574293ef954a6f2d4e16657da008e0cc15588fe"
},
"test"
:
{
"url"
:
"https://crm-b.bigaka.net/api"
,
"tunnel-token"
:
"aa8a1bfb7f6c5031d172d94b6574293ef954a6f2d4e16657da008e0cc15588fe"
},
"prod"
:
{
"url"
:
""
,
"tunnel-token"
:
""
...
...
营销中心接口测试/品牌库查询.py
0 → 100644
View file @
1851a14d
# -*- coding: utf-8 -*-
# -*- coding: utf-8 -*-
import
sys
sys
.
path
.
insert
(
0
,
'..'
)
from
utils
import
post_data
def
get_member
():
method
=
"/platform/brand/getBrandDbByToken?token=aa8a1bfb7f6c5031d172d94b6574293ef954a6f2d4e16657da008e0cc15588feD"
data
=
{}
post_data
(
method
,
data
,
"GET"
)
if
__name__
==
'__main__'
:
get_member
()
\ No newline at end of file
营销中心接口测试/账号修改密码.py
0 → 100644
View file @
1851a14d
# -*- coding: utf-8 -*-
# -*- coding: utf-8 -*-
import
sys
sys
.
path
.
insert
(
0
,
'..'
)
from
utils
import
post_data
def
get_member
():
method
=
":8087/account/updatePwd"
data
=
{}
data
[
"pwd"
]
=
"3873eb629c3923dcf4b2c14b2e17d2480c197e1675cadc2f2c0f24eaa880fed4"
data
[
"pwdForUpdate"
]
=
"aa8a1bfb7f6c5031d172d94b6574293ef954a6f2d4e16657da008e0cc15588feD"
post_data
(
method
,
data
)
if
__name__
==
'__main__'
:
get_member
()
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment