You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Developers should be able to store providers settings in the datastore.
Possible implementation details
A request is made to a service i.e. example.com/auth/provider
A check is made to the appengine_config.py.
If no settings are found. A check is made to a NDB provider model.
If no model is found. A new NDB provider model is saved to the datastore with empty settings. This will make it easier for a developer to add settings.
Efficiency
Using NDB models will make the retrieval very efficient. Request will follow this pattern instance => memcache => datastore
Multiple Hosts
To allow for multiple hosts the key for the Providers should use this form domain:provider E.g. example.com:google or example.com.br:google.
The text was updated successfully, but these errors were encountered:
Proposed here by Nick R
Developers should be able to store providers settings in the datastore.
Possible implementation details
example.com/auth/provider
appengine_config.py
.Efficiency
Using NDB models will make the retrieval very efficient. Request will follow this pattern
instance
=>memcache
=>datastore
Multiple Hosts
To allow for multiple hosts the key for the Providers should use this form
domain:provider
E.g.example.com:google
orexample.com.br:google
.The text was updated successfully, but these errors were encountered: