Skip to content

Commit

Permalink
document S2S support
Browse files Browse the repository at this point in the history
  • Loading branch information
jsteinberg1 committed Jun 1, 2022
1 parent 9626121 commit 328f5a7
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
pip install basic-zoom
```

## Example Package Usage
## Example Package Usage JWT

```
from basic_zoom import ZoomAPIClient
Expand All @@ -17,4 +17,19 @@ zoomapi = ZoomAPIClient(
)
result = zoomapi.get(endpoint_url="/phone/call_logs")
```
```


## Example Package Usage Server-to-Server app

```
from basic_zoom import ZoomAPIClient
zoomapi = ZoomAPIClient(
ACCOUNT_ID=" <Zoom Account ID here> ",
S2S_CLIENT_ID=" <Zoom S2S App Client ID here> ",
S2S_CLIENT_SECRET=" <Zoom S2S App Client Secret here> ",)
result = zoomapi.get(endpoint_url="/phone/call_logs")
```

0 comments on commit 328f5a7

Please sign in to comment.