forked from zendesk/zendesk_api_client_php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
30 lines (30 loc) · 1.02 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<title>Zendesk PHP API Client</title>
<style>
.zengreen {
color: #78A300;
}
</style>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2 well">
<h1 class="zengreen">Zendesk</h1>
<h4>To help you get started, coding examples for authentication and basic usage are available in the `samples` folder.</h4>
<ul>
<li><a href="samples/getTickets.php">Using an API token and getting a list of tickets.</a></li>
<li><a href="samples/oauth.php">Sample oAuth flow.</a></li>
</ul>
</div>
</div>
</div>
</body>
</html>