Dev-Server
To start the tman
development server, use the following command:
If the base-dir
is not specified, the current working directory will be used by default. Regardless, base-dir
must be the base directory of a TEN app.
The server starts on port 49483 by default, and you can interact with the dev-server using the following URL:
If the requested endpoint URL is not found, the client will receive a 404 Not Found
response, with the response body containing Endpoint '\' not found
to prevent any confusion.
Version
Retrieve the version of the dev-server.
Endpoint:
/api/dev-server/v1/version
Verb: GET
You will receive a 200 OK
response, with the body containing a JSON object like this:
Installed Extension Addons
Retrieve all installed extension addons recognized by the dev-server under the base directory.
Endpoint:
/api/dev-server/v1/addons/extensions
Verb: GET
You will receive a 200 OK
response, with the body containing a JSON array like this:
Available Graphs
Retrieve a list of available graphs.
Endpoint:
/api/dev-server/v1/graphs
Verb: GET
You will receive a 200 OK
response, with the body containing a JSON array like this:
If an error occurs, such as when the App package is not found, you will receive a 400 Bad Request
response with the body containing Failed to find any app packages
.
Extensions in a Specified Graph
Retrieve the list of extensions within a specified graph.
Endpoint:
/api/dev-server/v1/graphs/{graph_id}/nodes
Verb: GET
You will receive a 200 OK
response, with the body containing a JSON array. Ex:
The element type of the data
array is defined as follows.
Note that each element in the
data
array is uniquely identified by the combination ofapp
,extension_group
, andname
.
Definition of the api
object.
Note that the
cmd
,data
,audio_frame
,video_frame
are four types of TEN msgs.
The format of the property
is same as the schema definition. The format of data_in
/ data_out
/ audio_frame_in
/ audio_frame_out
/ video_frame_in
/ video_frame_out
are same as follows.
The format of the cmd_in
and cmd_out
are same, and compared with the above data_in
, there is an additional result
attribute.
Connections in a Specified Graph
Retrieve the list of connections within a specified graph.
Endpoint:
/api/dev-server/v1/graphs/{graph_id}/connections
Verb: GET
You will receive a 200 OK
response. Ex:
The element type of the data
array is defined as follows.
The element type of the cmd
array is defined as follows.
The definition of msg_conversion
is as follows.
Retrieve Compatible Messages for a Selected Extension
Select a message from an extension and retrieve all other messages from different extensions in the graph that are compatible with it.
Endpoint:
/api/dev-server/v1/messages/compatible
Verb: POST
The input body is a JSON object that represents a request to find compatible pins (connections) for an output command from a specific extension within a specified graph.
You will receive a 200 OK
response, with the body containing a JSON array like this:
Update a Graph
Update the specified graph.
Endpoint:
/api/dev-server/v1/graphs/{graph_id}
Verb: PUT
Input data (body):
If successful, the client will receive a 200 OK
response; otherwise, a 40x
error code will be returned.
Save manifest.json
manifest.json
Save the manifest.json
file.
Endpoint:
/api/dev-server/v1/manifest
Verb: PUT
If successful, the client will receive a 200 OK
response; otherwise, a 40x
error code will be returned.
Save property.json
property.json
Save the property.json
file, including predefined graphs and other content.
Endpoint:
/api/dev-server/v1/property
Verb: PUT
If successful, the client will receive a 200 OK
response; otherwise, a 40x
error code will be returned.
Last updated