|
@@ -247,7 +247,7 @@ public class KuaishouInterfaceServiceImpl implements IKuaishouInterfaceService {
|
|
|
}
|
|
|
var kuaiShouVideoGet = JSONObject.toJavaObject(detailJson, KuaiShouVideoGet.class);
|
|
|
kuaiShouVideoGet.setAccountId(token.getAccountId());
|
|
|
- kuaiShouVideoGet.setId(token.getAccountId() + kuaiShouVideoGet.getSignature());
|
|
|
+ kuaiShouVideoGet.setId(token.getAccountId() + kuaiShouVideoGet.getPhotoId());
|
|
|
kuaiShouVideoGet.setCreateTime(new Date());
|
|
|
kuaiShouVideoGet.setUpdateTime(new Date());
|
|
|
Integer type = MaterialEnum.getTypeBySize(kuaiShouVideoGet.getWidth(), kuaiShouVideoGet.getHeight());
|
|
@@ -302,11 +302,11 @@ public class KuaishouInterfaceServiceImpl implements IKuaishouInterfaceService {
|
|
|
List<KuaiShouVideoGet> videoGets = new ArrayList<>();
|
|
|
for (int i = 0; i < details.size(); i++) {
|
|
|
var detailJson = details.getJSONObject(i);
|
|
|
- if (Check.isNull(detailJson.getString("signature"))) {
|
|
|
+ /* if (Check.isNull(detailJson.getString("signature"))) {
|
|
|
continue;
|
|
|
- }
|
|
|
+ }*/
|
|
|
var kuaiShouVideoGet = JSONObject.toJavaObject(detailJson, KuaiShouVideoGet.class);
|
|
|
- kuaiShouVideoGet.setId(token.getAccountId() + kuaiShouVideoGet.getSignature());
|
|
|
+ kuaiShouVideoGet.setId(token.getAccountId() + kuaiShouVideoGet.getPhotoId());
|
|
|
kuaiShouVideoGet.setAccountId(token.getAccountId());
|
|
|
|
|
|
// kuaiShouVideoGet.setCreateTime(new Date());
|