
def read_app_info(): api = Api(AUTH_KEY_ID, AUTH_FILE_PATH, AUTH_ISSUER_ID, submit_stats=True) apps = api.list_apps() for app in apps: print(app.name, app.sku) pre = api.list_beta_build_localizations() x = {v.locale: v.whatsNew for v in pre} print(x)
why the code can read apps, but the beta build localizations are empty?

they are all "None", as the first picture shows, I indeed inputted what's new for 'en-US', why is none by my code?
If I get the concept wrong, please point it out. Any help is appreciated.
def read_app_info(): api = Api(AUTH_KEY_ID, AUTH_FILE_PATH, AUTH_ISSUER_ID, submit_stats=True) apps = api.list_apps() for app in apps: print(app.name, app.sku) pre = api.list_beta_build_localizations() x = {v.locale: v.whatsNew for v in pre} print(x)why the code can read apps, but the beta build localizations are empty?

they are all "None", as the first picture shows, I indeed inputted what's new for 'en-US', why is none by my code?
If I get the concept wrong, please point it out. Any help is appreciated.