sexy_api_client

Creator: coderz1093

Last updated:

0 purchases

TODO
Add to Cart

Description:

sexy api client

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';
copied to clipboard
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);
copied to clipboard
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);
copied to clipboard
Patch, Put and Delete #
Use this request exactly like in the other examples. It's all the same.

Contribute/donate by tapping on the Pay Pal logo/image #

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.

Related Products

More From This Creator