This repository was archived by the owner on Jan 31, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Tutorial
Shoma Okamoto edited this page Apr 24, 2020
·
2 revisions
import app_store_connect_client as app_store
username = "foo"
password = "XXX"
client = app_store.Client(username, password)
Just set is_2fa_auth
to True
to enable Two factor authentication mode.
client = app_store.Client(username, password, is_2fa_auth=True)
You will be prompted to enter the code during login, so enter it without any spaces and press the Enter key.
Work In Progress
example
provider_id = "123456"
client.change_provider(provider_id)
print(client.get_apps())
Please check your own apps with get_apps()
to see if the providers have switched properly.
We have two types. These are metrics
and sources
.
import app_store_connect as app_store
Source query is a query to get Sources on App Store Connect. It can be used for referrer analysis and so on.
import app_store_connect as app_store