giphy_client

Last updated:

0 purchases

giphy_client Image
giphy_client Images
Add to Cart

Description:

giphy client

giphy_client #

A Giphy API Client for Dart compatible with all platforms
Usage #
First, register an app at the Giphy Developers Portal.
Then, follow the instructions below:
import 'package:giphy_client/giphy_client.dart';

main() async {
// Create the client with an api key
//
// Visit https://developers.giphy.com to obtain a key
final client = new GiphyClient(apiKey: 'your_api_key_here');

// Fetch & print a collection of trending gifs
final gifs = await client.trending();

print(gifs);

// Fetch & print a collection with options
final nsfwGifs = await client.trending(
offset: 1,
limit: 10,
rating: GiphyRating.r,
);

print(nsfwGifs);
}
copied to clipboard
Features and bugs #
Please file feature requests and bugs at the issue tracker.

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.