Skip to content

truecodersio/APIs-and-JSON-Exercise

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Exercise1:

Let’s create a console application that calls both the Ron Swanson API, and the Kanye West API. Using both APIs, make Ron Swanson and Kanye West have a conversation that prints to the console.

Hints: Use a for loop to generate at least 5 quotes from each api and have them alternate to simulate a conversation

Here is some code to utilize for parsing the ron swanson response:

var ronQuote = JArray.Parse(ronResponse).ToString().Replace('[', ' ').Replace(']', ' ').Trim();

Here are the API urls:

https://ron-swanson-quotes.herokuapp.com/v2/quotes

https://api.kanye.rest

FINISHED Project: https://github.com/mvdoyle/KanyeAndRonSwanson

Exercise 2:

Use the OpenWeatherMap API to find out what the current weather forecast is!

Create an OpenWeatherMap account to get a free API Key

Add the NewtonSoft.Json Nuget Package to your Console App

Figure out how to get the CURRENT weather for the City you specify in degrees fahrenheit

Use this site for extra help: https://openweathermap.org/current

Creatively display & organize the response

Hint: For more info on Units of Measurement visit: https://openweathermap.org/current#data

About

.NET 6.0 template project for the APIs and JSON exercise at TrueCoders

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •  

Languages