5

Google Play ストアの検索 API はありますか? Apple Search APIのようなものを探してい ます。

4

3 に答える 3

3

ありますが、これは非公式の API です: http://code.google.com/p/android-market-api/

于 2012-10-01T12:35:51.750 に答える
1

WhereDat APIの呼び出しは、HTTP Get を実行するのと同じくらい簡単です。「facebook」を検索パラメーターに置き換えるだけです。

http://api.wheredataapp.com/search?q=facebook

結果は次のようになります。

{
  "apps": [
    {
      "category": "Social",
      "rating": 3.9948248863220215,
      "updated": 1435805622,
      "created": 1427510074,
      "icon_url": "https://lh3.googleusercontent.com/ZZPdzvlpK9r_Df9C3M7j1rNRi7hhHRvPhlklJ3lfi5jk86Jd1s0Y5wcQ1QgbVaAP5Q=w300",
      "title": "Facebook",
      "download_url": "https://play.google.com/store/apps/details?id=com.facebook.katana",
      "package": "com.facebook.katana",
      "ratings_count": 29588232,
      "short_description": "Keeping up with friends is faster than ever.• See what friends are up to• Share updates, photos and videos• Get notified when friends like and comment on your posts• P..."
    },
    {
      "category": "Business",
      "rating": 4.130451679229736,
      "updated": 1435644682,
      "created": 1427510616,
      "icon_url": "https://lh4.ggpht.com/vcyZimfIRlWrLarEpIj7MMSuqgwIkF4bx5nArKhFWsEqGclnPTAeLLK4cFiQ5QscRIEc=w300",
      "title": "Facebook Pages Manager",
      "download_url": "https://play.google.com/store/apps/details?id=com.facebook.pages.app",
      "package": "com.facebook.pages.app",
      "ratings_count": 693199,
      "short_description": "Pages Manager helps admins connect with their audience and keep up with activity on multiple Pages, all in one place.• Post updates and photos and respond to comments ..."
    },
    {
      "category": "Social",
      "rating": 4.149935245513916,
      "updated": 1435881022,
      "created": 1427510065,
      "icon_url": "https://lh5.ggpht.com/sFV8zzvuM__JTl0QDhtp0sGMzBXKGrEQWLpdJr_DhNxHNIJ7rNbvEewTJdhULTjsgM0=w300",
      "title": "Facebook Groups",
      "download_url": "https://play.google.com/store/apps/details?id=com.facebook.groups",
      "package": "com.facebook.groups",
      "ratings_count": 106446,
      "short_description": "This app gives you a dedicated space for you and your groups.See all of your Facebook Groups in one place. Discuss, plan and collaborate easily and without distraction..."
    },
    {
      "category": "Social",
      "rating": 4.336362838745117,
      "updated": 1435319250,
      "created": 1431991423,
      "icon_url": "https://lh3.googleusercontent.com/Alon4Gigwl2DqrT36O6JMn-M40tinuxFHWROtv0TP8ozX8Sr5MiBM1CuHX-veqFhnKvQ=w300",
      "title": "Facebook Lite",
      "download_url": "https://play.google.com/store/apps/details?id=com.facebook.lite",
      "package": "com.facebook.lite",
      "ratings_count": 95510,
      "short_description": "This version of Facebook is efficient with data and works in all network conditions.Facebook Lite:- Installs quickly — the app is less than 1 MB- Works on all Android ..."
    }
  ]
}
于 2015-07-28T00:57:03.810 に答える
0

実は上記のようなものがあります。しかし、それを使用することは違法です。私たちはスタートアップで使用することを検討しており、使用できるかどうかを確認するために弁護士を雇いました。(ユーザー同意書に基づく) ちょっとした調査の後、彼はこの API の使用は違法であると私たちに言いました。使用しないもう 1 つの理由は、いつ機能しなくなるかがわからないことです (Google がプロトコルで何かを変更すると、API は機能しなくなります)。

于 2013-03-17T08:38:00.453 に答える