ummobile_custom_http 0.0.1 copy "ummobile_custom_http: ^0.0.1" to clipboard
ummobile_custom_http: ^0.0.1 copied to clipboard

outdated

The custom HTTP client with GetConnect used in the UMMobile App to make the request.

Custom HTTP client for the UMMobile app

Getting Started #

Initialization #

A base URL and a static authorization can be defined in the initialization.

// Simple initalization
final http = UMMobileCustomHttp(baseUrl: 'https://jsonplaceholder.typicode.com');

// Initialiation with authentication
final http = UMMobileCustomHttp(
  baseUrl: 'https://jsonplaceholder.typicode.com',
  auth: Auth(
    token: () => 'YOUR_TOKEN',
    tokenType: 'Bearer',
    headername: 'Authorization',
  ),
);

HTTP Calls #

To make a call you need to use the function that start with custom.

final http = UMMobileCustomHttp(baseUrl: 'https://jsonplaceholder.typicode.com');\

await http.customGet(path: '/posts/1');
await http.customPost(path: '/posts/1', body: {});
await http.customDelete(path: '/posts/1');

You can also pass a mapper function to format the response body and return a specific type.

final http = UMMobileCustomHttp(baseUrl: 'https://jsonplaceholder.typicode.com');

// Return a Post instance
await http.customGet<Post>(
  path: '/posts/1',
  mapper: (json) => Post(
    userId: json['userId'],
    id: json['id'],
    title: json['title'],
    body: json['body'],
  ),
);

Exceptions #

Throws an HttpCallException if an error occurs. The HttpCallException contains a type attribute that can be: ClientError, ServerError, ClientConnectionError or RequestTimeout as shown in the table below:

Type Case
ClientError When the status code is between 300 and 499
ServerError When the status code is between 500 and 599
ClientConnectionError When the status code is null
RequestTimeout When a request timeout occurs

You can use the Exception like:

final http = UMMobileCustomHttp(baseUrl: 'https://jsonplaceholder.typicode.com');
try {
  await http.customGet(path: '/posts/1');
} on HttpCallException catch(e) {
  if(e.type === HttpException.ClientConnectionError) {
    // display that the client have no connection
  }
}
1
likes
0
pub points
0%
popularity

Publisher

unverified uploader

The custom HTTP client with GetConnect used in the UMMobile App to make the request.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, get

More

Packages that depend on ummobile_custom_http