Skip to content

Latest commit

 

History

History
53 lines (34 loc) · 1.33 KB

DefaultApi.md

File metadata and controls

53 lines (34 loc) · 1.33 KB

halo_client.api.DefaultApi

Load the API package

import 'package:halo_client/api.dart';

All URIs are relative to http://localhost:8091

Method HTTP request Description
setNoCacheForSetUpPage POST /system/setup

setNoCacheForSetUpPage

setNoCacheForSetUpPage()

Example

import 'package:halo_client/api.dart';
// TODO Configure HTTP basic authorization: basicAuth
//defaultApiClient.getAuthentication<HttpBasicAuth>('basicAuth').username = 'YOUR_USERNAME'
//defaultApiClient.getAuthentication<HttpBasicAuth>('basicAuth').password = 'YOUR_PASSWORD';

final api = HaloClient().getDefaultApi();

try {
    api.setNoCacheForSetUpPage();
} catch on DioException (e) {
    print('Exception when calling DefaultApi->setNoCacheForSetUpPage: $e\n');
}

Parameters

This endpoint does not need any parameter.

Return type

void (empty response body)

Authorization

basicAuth, bearerAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: Not defined

[Back to top] [Back to API list] [Back to Model list] [Back to README]