Retrieve the address, port, and server keys of another platform known to the specified platform.
⚠️ The colon is a reserved character in a URI. The path known-hosts variable is delimited by a dash: e.g.: :address-:port.
Request:
- Authorization:
BEARER <jwt_token>
Response:
- With valid BEARER token on success:
200 OK
- Content Type:
application/json
- Body:
{
"address": "<address>",
"port": "<port>",
"key": "<server_key>"
},
- With valid BEARER token on failure:
400 Bad Request
- Content Type:
application/json
- Body:
{
"error": "<Error Message>"
}
- With invalid BEARER token:
401 Unauthorized
Retrieve the address, port, and server keys of another platform known to the specified platform.
Request:
BEARER <jwt_token>Response:
200 OKapplication/json400 Bad Requestapplication/json401 Unauthorized