UNPKG

@wappnet-systems/myq

Version:

A nearly complete and modern implementation of the Liftmaster / Chamberlain myQ API.

21 lines 1.06 kB
/* Copyright(C) 2017-2023, HJD (https://github.com/hjdhjd). All rights reserved. * * settings.ts: Settings and constants for myq. */ // myQ OAuth client identifier. export const MYQ_API_CLIENT_ID = "ANDROID_CGI_MYQ"; // myQ OAuth client secret. export const MYQ_API_CLIENT_SECRET = "VUQ0RFhuS3lQV3EyNUJTdw=="; // myQ OAuth redict URI. export const MYQ_API_REDIRECT_URI = "com.myqops://android"; // myQ OAuth scope. export const MYQ_API_SCOPE = "MyQ_Residential offline_access"; // myQ application identifier. export const MYQ_APP_ID = "D9D7B25035D549D8A3EA16A9FFB8C927D4A19B55B8944011B2670A8321BF8312"; // myQ user agent to be used for API interactions other than logins. export const MYQ_APP_USER_AGENT = "sdk_gphone_x86/Android 11"; // myQ user agent to be used for API login. export const MYQ_LOGIN_USER_AGENT = "Mozilla/5.0 (Linux; Android 11; sdk_gphone_x86) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.106 Mobile Safari/537.36"; // myQ application version. export const MYQ_APP_VERSION = "5.242.0.72704"; //# sourceMappingURL=settings.js.map