ストームパスをインストールし、Googleサインインを使用して登録してサインインします。これを使用して、ストームパスのGoogleディレクトリにグループを作成しようとしています
from stormpath.client import Client
stormpath_client = Client(id=STORMPATH_CLIENT_APIKEY_ID, secret=STORMPATH_CLIENT_APIKEY_SECRET)
directory = stormpath_client.applications[0].account_store_mappings[1].account_store
directory.groups.create({'name': 'admins'})
このチュートリアルに基づいて
取得してエラー
Cannot create nor edit accounts of externally managed directories.
ストームパス コンソールでグループを作成しようとすると、同じエラーが発生します。
ユーザーごとに異なるアクセス許可を与えるにはどうすればよいですか?