|
@@ -15,11 +15,13 @@ axios.defaults.headers.post['Content-Type'] = 'application/x-www-form-urlencoded
|
|
|
const securityCode = getUrlArgObject("code");
|
|
|
const appKeyId = getUrlArgObject("appI");
|
|
|
const appKeySecret = getUrlArgObject("appS");
|
|
|
+ const productId = getUrlArgObject("productId");
|
|
|
axios.interceptors.request.use(
|
|
|
req => {
|
|
|
req.headers.appKeyId = appKeyId;
|
|
|
req.headers.appKeySecret = appKeySecret;
|
|
|
req.headers.securityCode = securityCode;
|
|
|
+ req.headers.productId = productId;
|
|
|
return req;
|
|
|
},
|
|
|
error => {
|