sexy_api_client 0.0.4+4 copy "sexy_api_client: ^0.0.4+4" to clipboard
sexy_api_client: ^0.0.4+4 copied to clipboard

outdated

A simple wrapper around Google's http module for easily making Query String API calls.

sexy_api_client #

A simple wrapper around Google's http module for easily making Query String API calls.

Hecho en 🇵🇷 por Radamés J. Valentín Reyes

Note: This library makes an http Get request to the specified URL, concatenates the path to the URL if one is specified and URI encodes data and formats it following the QueryString Specs. Any thrown errors are from the http module it depends on.

Import Packages #

import 'package:sexy_api_client/sexy_api_client.dart';

Example #

Get request #

//Define parameters
Map<String,String> parameters = {
  'format':'json',
};
//Make the API call to the specified URL using the Map parameters
String myResponse = await SexyAPI(url: 'https://api64.ipify.org',parameters: parameters).get();
//Print the server response
print(myResponse);

Post request #

Map<String,String> parameters = {
  'format':'json',
};
Map<String,String> contentToPost = {
  "key" : "value",
};
String myResponse = await SexyAPI(
  url: 'https://api64.ipify.org',
  parameters: parameters,
).post(
  body: contentToPost,
);
print(myResponse);
0
likes
0
pub points
41%
popularity

Publisher

unverified uploader

A simple wrapper around Google's http module for easily making Query String API calls.

License

unknown (LICENSE)

Dependencies

http, meta

More

Packages that depend on sexy_api_client