djblets.webapi.oauth2_scopes¶
OAuth2 scope generation for WebAPI resources.
- get_scope_dictionary()[source]¶
Return the scope dictionary.
This method requires
WEB_API_ROOT_RESOURCE
setting to point to an instance of the root resource for your WebAPI. Optionally, theWEB_API_SCOPE_DICT_CLASS
(defaulting todjblets.webapi.oauth2_scopes.WebAPIScopeDictionary
) can be set to specialize scope generation.If the
djblets.extensions
app is being used, then theWEB_API_SCOPE_DICT_CLASS
setting should be set todjblets.webapi.oauth2_scopes.ExtensionEnabledWebAPIScopeDictionary
.- Returns
The scope dictionary.
- Return type
- class WebAPIScopeDictionary(root_resource)[source]¶
A Web API scope dictionary.
This class knows how to build a list of available scopes from the WebAPI resource tree at runtime.
By default, it will only have to walk the API tree once, after which the value can be cached.
- property scope_dict[source]¶
The dictionary of scopes defined by this dictionary.
The value is cached so that it will only be recomputed when the dictionary is updated.
- iterkeys()[source]¶
Iterate through all keys in the dictionary.
This is used by oauth2_provider when on Python 2.x to get the list of scope keys.
- Yields
unicode – The key for each scope.
- class ExtensionEnabledWebAPIScopeDictionary(*args, **kwargs)[source]¶
A Web API scopes dictionary that supports extensions.
This scope dictionary is only required if your app is using the
djblets.extensions
app.