NoMore201 / googleplay-api

Google Play Unofficial Python API
Other
409 stars 208 forks source link

How to get GPAPI and token? #126

Open kjkpoi opened 4 years ago

kjkpoi commented 4 years ago

I ran the code in readme. I succeed to login but I don't have any idea to get GPAPI and token

kallix commented 4 years ago

See api.gsfId and api.authSubToken

khaleel-git commented 2 years ago

Code to print gsfId and suthSubToken: ` # First we initiate googleplayapi api = GooglePlayAPI("en_US", TimeZone, device) api.login( email = Email, password = App_Password)

    # Printing gsfId and authSubToken generated from Google Play Store
    print("gsfId: " + str(api.gsfId))
    print("authSubToken: " + str(api.authSubToken))`