tweaselORG / parse-tunes

Library for fetching select data on iOS apps from the Apple App Store via undocumented internal iTunes APIs.
MIT License
16 stars 1 forks source link

searchApps not working #14

Open kejiweixun opened 1 week ago

kejiweixun commented 1 week ago

Hi, searchApps seems not working. It always return 404.

import { searchApps } from 'parse-tunes';

(async () => {
    const apps = await searchApps({ searchTerm: 'education', country: 'DE', language: 'en-GB' });

    for (const app of apps) console.log(app.name);
    // Microsoft OneNote
    // Goodnotes 6
    // StudyCards - Karteikarten
    // …
})();
kejiweixun commented 1 week ago

By the way, how to get info like This app is available only on the App Store for iPad? Seems not available from fetchAppDetails.

截屏2024-11-02 07 48 51