Established assault path and using Google login to register and login. Now I am trying to create groups in google directory in stormpath using this
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'})
based on this toturial
I get and error
Cannot create nor edit accounts of externally managed directories.
I get the same error if I try to create groups in the stormpath console.

How to give other users different permissions?
source
share