This project was implemented for Zendesk's Co-Op Coding Challenge
The Zendesk Ticket Viewer is a CLI application that allows the user to view the tickets in their Zendesk account.
The ticket viewer should:
- Connect to the Zendesk API
- Request all the tickets for your account
- Display them in a list
- Display individual ticket details
- Page through tickets when more than 25 are returned
- Java installed on your machine
- clone git repo into a working directory of your choice
- navigate to the working directory
- navigate to "src" folder and modify code (specified to Sabrina) to add credentials
- go back to previous directory - the main project folder (zendesk-ticket-viewer)
- create a new folder named "out" in the working directory
In the working directory, compile the java program with this command:
javac -sourcepath src -d out -cp lib/json-20210307.jar src/Main.java
To run the compiled program execute this command:
java -cp out:lib/json-20210307.jar Main