EFForg/rs-google-play

No GSF auth token

braaandon opened this issue · 1 comments

Gpapi::login returns No GSF auth token. The credentials are definitely correct as I can login using them on my browser.

Example Code:

use gpapi::Gpapi;

#[tokio::main]
async fn main() {
    let mut gpa = Gpapi::new("en_UK", "GMT", "pc");
    gpa.login("email@gmail.com", "password").await.unwrap_or_else(|error| {
        panic!("Problem logging in: {:?}", error);
    });
}

i'm getting this error message again, could you please reopen?