Hi there! Wondering if there is workaround to have Google authentication for WHD?
Does anyone know?
Tks in advance!!! Pablo
Hi pbergero,
By default it's incapable of integrating with Google, however you can do some custom code and configuration to achieve a link to the Google Authenticator - though this is not a supported feature.
-Midnight
tks
- Pablo
I've been experimenting with Google Apps script and have gotten basic queries from the API documentation to load to a sheet:
function myFunction() {
var credentials = "username=MYUSERNAME&password=MYPASSWORD";
var spreadsheetKey = 'SHEETKEY';
var ss = SpreadsheetApp.openById(spreadsheetKey);
var sheet = ss.getSheetByName('Sheet1');
var tabName = 'StatusTypes';
var url = 'https://localhost/helpdesk/WebObjects/Helpdesk.woa/ra/StatusTypes?' + credentials;
var response = UrlFetchApp.fetch(url, {'muteHttpExceptions': true});
Logger.log(response);
//code to parse the response to the sheet goes here
}
tks! I'll checkit out !