这个接口很奇怪,有时候有用有时候没用,求告知!感谢!!!
具体的:请求参数
params['mobile']="45025294530"
params['customer_create']="""{"gender":1,"name":"test"}"""
返回成功。
第二次请求只是换了个电话号码:
params['mobile']="18810900504"
params['customer_create']="""{"gender":1,"name":"test"}"""
返回失败代码:{u'error_response': {u'message': u'invalid params', u'code': 141500101}}
第三次请求和第一次一样:
却返回同样错误,而不是返回‘已存在’。
我的代码:
# -*- coding: utf-8 -*-
import requests
import json
class GetCustomer(object):
"""docstring for ClassName"""
def test():
print('helloe')
params={}
params['access_token']='82965e4873813846b27d12a65b37b4f7'
params['mobile']="45025294530"
params['customer_create']="""{"gender":1,"name":"test"}"""
url = 'https://open.youzan.com/api/oauthentry/youzan.scrm.customer/3.0.0/create'
print(params)
res = requests.get(url=url, params=params,headers={'Connection':'close'})
print(res.json())
if __name__ == '__main__':
test()
|
|
用手机打开
收藏
赞 0
···
回复
|
|
|
|