Links
- Sample apps
- URLs
- Browse APIs exposed:
https://your_app_id.appspot.com/_ah/api/explorer
- Note: This works for
localhost:port
but not forfoo.localhost
:(
- Note: This works for
- Discovery APIs
https://your_app_id.appspot.com/_ah/api/discovery/v1/apis
- The
your_app_id
must be the actual app id and not an alias. For instance, if you have an aliasyour_app_id
pointing toyour_app_id-hrd
, then you must useyour_app_id-hrd
in the URL. :(
- Browse APIs exposed:
- Overview
- Introduction to the Endpoints Proto Datastore API
- Creating an Endpoints API
- Defining the API
- Creating an API Server
- Using ResourceContainer for path or querystring arguments
- Creating an API server
- Allowed Client IDs and Audiences
- Adding a Method Protected by OAuth
- Testing and Deploying an API Backend
- Using the Endpoints Command Line Tool
appengine-sdk/endpointscfg.py <command> <target_lang> <options> [class-name]
<command>
is eitherget_client_lib
orget_discovery_doc
.<target-lang>
(used only inget_client_lib
) to specify the type of client bundle you want to create. Currently, you are required to supply the valuejava
.<options>
, if supplied, is one or more items shown in the Options table[class name]
is the full class name of your API.
- Generating a Discovery Doc
- See also: Google APIs Discovery Service: Discovery Document
appengine-sdk/endpointscfg.py get_discovery_doc your_module.YourServiceClass
appengine-sdk/endpointscfg.py get_discovery_doc your_module.YourServiceClass1 your_module.YourServiceClass2 …
appengine-sdk/endpointscfg.py get_discovery_doc --format rpc your_module.YourServiceClass1 your_module.YourServiceClass2 …
appengine-sdk/endpointscfg.py get_discovery_doc --format rest your_module.YourServiceClass1 your_module.YourServiceClass2 …
(REST is the default)
- Clients
- See also: