|
|
@@ -32,7 +32,7 @@ public class SyncUserspaceController extends BaseController {
|
|
|
* @param signature
|
|
|
* @return
|
|
|
*/
|
|
|
- @GetMapping("/sync/userspace/page/info/get")
|
|
|
+ @GetMapping("/api/userspace/sync/page/info/get")
|
|
|
public ModelMap getSyncUserSpacePageInfo(int pageSize, int pageNumber, Long timestamp, String signature) throws NoSuchAlgorithmException, InvalidKeyException, IOException {
|
|
|
if (!OpenApiSignUtil.verifySignForHttpGet(request, OpenApiSignConfig.SECRET_KEY)) {
|
|
|
throw new RuntimeException("签名错误");
|
|
|
@@ -46,7 +46,7 @@ public class SyncUserspaceController extends BaseController {
|
|
|
* @param signature
|
|
|
* @return
|
|
|
*/
|
|
|
- @GetMapping("/sync/userspace/info/get")
|
|
|
+ @GetMapping("/api/userspace/sync/info/get")
|
|
|
public ModelMap getSyncUserspaceBySpaceUU(Long spaceUU, String signature) throws NoSuchAlgorithmException, InvalidKeyException, IOException {
|
|
|
if (!OpenApiSignUtil.verifySignForHttpGet(request, OpenApiSignConfig.SECRET_KEY)) {
|
|
|
throw new RuntimeException("签名错误");
|