I hereby claim:
- I am sboily on github.
- I am sboily (https://keybase.io/sboily) on keybase.
- I have a public key whose fingerprint is 2D3A 6508 309C 4C1D C548 A057 FB35 2666 B4C9 9D24
To claim this, I am signing this object:
#!/usr/bin/python | |
from xivo_auth_client import Client as Auth | |
from xivo_confd_client import Client as Confd | |
# Please add a web service user with acl confd.# | |
# To use ./change-sip-conf-params.py | |
username = "sylvain" # Fill with your username |
#!/usr/bin/python3 | |
from wazo_auth_client import Client as Auth | |
from wazo_confd_client import Client as Confd | |
# Please add a web service user with acl confd.# | |
# To use ./add-webrtc-line | |
username = "sylvain" # Fill with your username | |
password = "sylvain" # Fill with your password |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env python | |
from xivo_auth_client import Client as Auth | |
from xivo_ctid_ng_client import Client as Cti | |
username="sylvain" # cti user | |
password="sylvain" # cti user | |
######################### | |
a = Auth('localhost', username=username, password=password, verify_certificate=False) |
#!/usr/bin/env python | |
from xivo_auth_client import Client as Auth | |
from xivo_ctid_ng_client import Client as Cti | |
username="change_it" # cti user | |
password="change_it" # cti user | |
######################### | |
a = Auth('192.168.1.124', username=username, password=password, verify_certificate=False) |
#!/usr/bin/python | |
from xivo_auth_client import Client as Auth | |
from xivo_confd_client import Client as Confd | |
import sys | |
# Please add a web service user with acl confd.# | |
# To use ./add-user Sylvain Boily 8010 | |
username = "change_it" # Fill with your username |
#!/usr/bin/python | |
from xivo_auth_client import Client as Auth | |
from xivo_confd_client import Client as Confd | |
# Please add a web service user with acl confd.# | |
username = "change_it" # Fill with your username | |
password = "change_it" # Fill with your password |
#!/usr/bin/env python3 | |
from wazo_confd_client import Client as confdClient | |
from wazo_setupd_client import Client as setupdClient | |
c = confdClient('localhost', port=443, https=True, verify_certificate=False, prefix='api/confd') | |
w = setupdClient('localhost', verify_certificate=False) | |
if c.wizard.get()['configured'] != True: | |
discover = c.wizard.discover() |
#!/usr/bin/env python | |
from xivo_auth_client import Client as Auth | |
from xivo_confd_client import Client as Confd | |
auth = Auth('127.0.0.1', username='sylvain', password='sylvain', verify_certificate=False) | |
token_data = auth.token.new('xivo_user', expiration=10) | |
token = token_data['token'] | |
uuid = token_data['xivo_user_uuid'] |
{ | |
"id": null, | |
"title": "Grafana", | |
"originalTitle": "Grafana", | |
"tags": [], | |
"style": "dark", | |
"timezone": "browser", | |
"editable": true, | |
"hideControls": false, | |
"sharedCrosshair": false, |