Skip to content

Commit

Permalink
- Recommit updated creds.py
Browse files Browse the repository at this point in the history
  • Loading branch information
dstaudt committed Jul 17, 2019
1 parent 06ab704 commit 8e91d66
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions creds.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Modify the below credentials to match your Webex Meeting site, host Webex ID and password
# This sample does not support Webex or CI OAuth/SSO authentication

SITENAME = 'changeme'
WEBEXID = 'changeme'
PASSWORD = 'changeme'
# Credentials for use with 'legacy' non-SSO/non-OAuth sites
WEBEXID = 'CHANGEME' # do not include the @domain
SITENAME = 'CHANGEME'
PASSWORD = 'CHANGEME'

# Credentials for use with Webex OAuth sites (see oauth2.py)
SITENAME_OAUTH = 'CHANGEME'
WEBEXID_OAUTH = 'CHANGEME' # must include @domain
CLIENT_ID = 'CHANGEME'
CLIENT_SECRET = 'CHANGEME'

0 comments on commit 8e91d66

Please sign in to comment.