提交 738a587a authored 作者: vipcxj's avatar vipcxj

检查更新时所使用的token没有进行加密

上级 6a665d0b
/** @module services/update */
import DeviceInfo from 'react-native-device-info';
import post from '../utils/post';
import { encrypt } from '../utils/helper';
import config from '../utils/config';
/**
......@@ -38,7 +39,7 @@ export const checkUpdate = async () => {
const result = await post(`${config.updateContextPath}/api/app/user/apps/check`, {
name: config.productId,
version: DeviceInfo.getVersion(),
token: tokenId,
token: encrypt(tokenId),
}, {}, {}, false);
result.tokenId = tokenId;
return result;
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论