discovery method
generate a OCMProvider with local data and send it as DataResponse. This replaces the old PHP file ocm-provider/index.php.
Returns a Future containing a DynamiteResponse
with the status code, deserialized body and headers.
Throws a DynamiteApiException
if the API call does not return an expected status code.
Status codes:
- 200: OCM Provider details returned
- 500: OCM not supported
See:
- $discovery_Request for the request send by this method.
- $discovery_Serializer for a converter to parse the
Response
from an executed request.
Implementation
Future<_i1.DynamiteResponse<OcmDiscoveryResponseApplicationJson, OcmOcmDiscoveryHeaders>> discovery() async {
final _request = $discovery_Request();
final _response = await _rootClient.httpClient.send(_request);
final _serializer = $discovery_Serializer();
final _rawResponse =
await _i1.ResponseConverter<OcmDiscoveryResponseApplicationJson, OcmOcmDiscoveryHeaders>(_serializer)
.convert(_response);
return _i1.DynamiteResponse.fromRawResponse(_rawResponse);
}