Skip to content

Latest commit

 

History

History
47 lines (36 loc) · 1.21 KB

README.md

File metadata and controls

47 lines (36 loc) · 1.21 KB

Yealink Manager API

Usage of the Yealink Manager API.

Getting Started

    from yealink_manager import YealinkController
    import time
    # Program parameters
    username = 'admin'
    password = 'admin'
    phone_ip = '192.168.1.10'
    try:
        yl = YealinkController(username, password, phone_ip)
        yl.set_line(1)
        yl.get_status()
        yl.dial('1234')
        yl.screenshot()
        time.sleep(5)
        yl.hangup()
        yl.screenshot()
    except Exception as e:
        print(e)

Set action URI allowed
Set action URI allowed

On device accept control
allow remote control

API Documentation

TODO: DOCS

Alternatives

Other Information