feat(api): update base url

This commit is contained in:
2025-11-11 20:59:56 +07:00
parent de46765d0c
commit f7b8fd5562
2 changed files with 2 additions and 2 deletions
@@ -21,7 +21,7 @@ import lombok.extern.log4j.Log4j2;
@Log4j2
@NoArgsConstructor(access = AccessLevel.PRIVATE)
public class AppStoreScraper {
public static final String BASE_URL = "https://miti-app-store-scraper.vercel.app/";
public static final String BASE_URL = "https://store-scraper.vercel.app/apple/";
@SneakyThrows
public static String rawApp(AppleAppRequest request) {
@@ -21,7 +21,7 @@ import lombok.extern.log4j.Log4j2;
@Log4j2
@NoArgsConstructor(access = AccessLevel.PRIVATE)
public class GooglePlayScraper {
public static final String BASE_URL = "https://miti-google-play-scraper.vercel.app/";
public static final String BASE_URL = "https://store-scraper.vercel.app/google/";
@SneakyThrows
public static String rawApp(GoogleAppRequest request) {