Package Description


Keywords
cleverbot, foaas, giphy, netstandard, steam
License
MIT
Install
Install-Package Cookie -Version 4.2.1

Documentation

Logo by logomakr.com


Currently Supported API's

  • Giphy
  • Steam
  • Cleverbot
  • FOAAS (Fuck Off As A Service)

Upcoming API's

  • DuckDuckGo (DDG)
  • Urban Dictionary
  • Tumblr

Code Example

            var Client =  new CookieClient(new CookieConfig()
            {
                CleverbotKey = "YOUR_API_KEY_HERE",
                GiphyKey = "YOUR_API_KEY_HERE",
                // Other Keys
            });
            
            var GiphySearch = await Client.Giphy.SearchAsync("Pepe The Frog", 10, Rating.R).ConfigureAwait(false);
            Console.WriteLine(GiphySearch.Datum[0].EmbedURL);
            
            var SteamSearch = await Client.RecentGamesAsync("12345678909876").ConfigureAwait(false);
            Console.WriteLine(SteamSearch.RecentGames.Count);