Focus Beeper Desktop and optionally open a specific chat, jump to a message, or pre-fill text and an image.
Focus Beeper Desktop app
import os
from beeper_desktop_api import BeeperDesktop
client = BeeperDesktop(
access_token=os.environ.get("BEEPER_ACCESS_TOKEN"), # This is the default and can be omitted
)
response = client.focus()
print(response.success){
"success": true
}Returns Examples
{
"success": true
}