ContributionsMost RecentMost LikesSolutionsRe: Lithys 2015: Telstra - Total Community All Star During past 12 months as a regular user of Telstra Crowd Support it has been most rewarding to see user interest and support go from strength to strength. We see daily a broader range of questions spanning not just isues pertaining to Telstra services and facilities, but also site participants now feel confident to seek answers for general issues or probelms they might be experiencing with PC's, Tablet's; mobile and home phones of course in fact a huge range of devices as well as apps and software. There always seems to be someone around who can help someone else out with an answer or at least steer them in the right direction to ensure a solution to their query. Jeff Source of Core Components. Is it possible to view the source code of Core Components? I'm looking to create a custom component but need to view the source of the core to clone some functionality. custom user data Hi there, Is there a way to capture custom data for user when they register? e.g. User's contact number, company etc (or anything that does not come out of the box) Cheers, Teck Solvedblog: metadata Hi there, I'm trying to customise the metadata for blog message. i.e each blog content should have a unique meta tags for seo purposes. Anyone know how do I achieve that? example below <meta name="description" content=""/> <meta name="keywords" content="Car, road trip, music"/> <meta property="article:publisher" content="" /> <meta property="article:section" content="Car" /> <meta property="article:published_time" content="2014-05-12T08:00:43+10:00" /> <meta property="article:modified_time" content="2014-05-15T14:38:58+10:00" /> Regards, Teck SolvedRe: Connecting to LSW data in custom endpointHi Sam, I have added the other server to my list of Acceptable domains. and from my chrome plugin i can access the other domain and can get the JSON results back. but when i implement the below code in and run through Endpoint, $.ajax({ type: "GET", url: "https://test.lithium.com/api/v1/workqueues?callback=?", data: { includeQueueBacklog: 'true', jsonResult: 'true' }, dataType: 'json', success: function(jqXHR) { alert("Success " + jqXHR.UploadStatus); }, error: function(jqXHR) { alert("Error " + jqXHR.status); } }); i get the results back in my network tab, status is 200 OK. but always goes to the Error message and cant read the output json. error says "Call back jquery_000000<number> was not called". any help much appreciated. thanks, Shalini. Connecting to LSW data in custom endpoint Hello, I'm creating an HTML custom endpoint. I need to call LSW system with the basic authorization using Ajax to get and parse the result so I can then query the right information. Can someone help point me in the right direction on how to do this? I tried the below AJAX code, $.ajax({ url: "https://test.response.lithium.com/api/reports/csv/conversation?xslt=json.xsl", type: "GET", data: { startTime: '2013-01-20' }, beforeSend: function (request) { request.withCredentials = true; request.setRequestHeader("x-user", 'user') request.setRequestHeader("x-pass", 'pass') request.setRequestHeader("Authorization", "Basic XXXXXXXX"); }, crossDomain:true, dataType:"jsonp", success: function(res) { alert("Success " + res); }, error: function(err) { alert("Error " + err); } }); but this always returns error message - {"result":"fail","errorMessage":"Unauthorized"} the username/password is already base64 encoded, and they are correct. but still get an unauthorized error. am i doing something wrong? any help appreciated. Thanks, Shalini. How do I search a particular Board or Thread for messages posted within specific date range ? Using REST call, I need to get the Board id or Thread id where there have been posts between two dates. Is there a way to search a board or thread for messages posted between two given dates ?