21 releases (7 stable)

5.1.0 Apr 3, 2024
5.0.0 Mar 29, 2024
4.0.0 Dec 21, 2022
3.1.0 Nov 17, 2022
0.2.1 Jul 1, 2021

#343 in Web programming

Download history 5/week @ 2023-12-22 24/week @ 2024-01-05 20/week @ 2024-01-12 5/week @ 2024-01-19 11/week @ 2024-01-26 29/week @ 2024-02-02 12/week @ 2024-02-09 28/week @ 2024-02-16 127/week @ 2024-02-23 60/week @ 2024-03-01 61/week @ 2024-03-08 54/week @ 2024-03-15 28/week @ 2024-03-22 328/week @ 2024-03-29 151/week @ 2024-04-05

573 downloads per month
Used in 3 crates

MIT license

285KB
5K SLoC

gpapi - Google Play API for Rust

crates.io Documentation MIT licensed CI

A library for interacting with the Google Play API.

Getting Started

To interact with the API, first you'll have to obtain an OAuth token by visiting the Google embedded setup page and opening the browser debugging console, logging in, and looking for the oauth_token cookie being set on your browser. It will be present in the last requests being made and start with "oauth2_4/". Copy this value. It can only be used once, in order to obtain the aas_token, which can be used subsequently. To obtain this token:

use gpapi::Gpapi;

#[tokio::main]
async fn main() {
    let mut api = Gpapi::new("ad_g3_pro", &email);
    println!("{:?}", api.request_aas_token(oauth_token).await);
}

Now, you can begin interacting with the API by initializing it setting the aas_token and logging in.

use gpapi::Gpapi;

#[tokio::main]
async fn main() {
    let mut api = Gpapi::new("px_7a", &email);
    api.set_aas_token(aas_token);
    api.login().await;
    // do something
}

From here, you can get package details, get the info to download a package, or use the library to download it.

let details = api.details("com.instagram.android").await;
println!("{:?}", details);

let download_info = api.get_download_info("com.instagram.android", None).await;
println!("{:?}", download_info);

api.download("com.instagram.android", None, true, true, &Path::new("/tmp/testing"), None).await;

Docs

Documentation for this crate can be found on docs.rs.

Todo

This inludes some subset, but not all, of the Google Play API library. Some of the functionality is missing, such as browsing and searching for packages.

Credits

This library was originally created by David Weinstein, and is currently maintained by Bill Budington.

It follows some of the conventions set by Aurora's gplayapi java library. It was originally modeled after the googleplay-api for python patterns.

License: MIT

Dependencies

~10–26MB
~397K SLoC