Comments
-
Thanks
-
Hi @GrantSmith This is near at what I wish to have. I wish a wrapper to schedule a standard connector (i.e. /appstore/connectors/com.domo.connector.adobeanalyticsv2.jwt) where the date range is not "last X days", but is calculated by the wrapper. A kind of custom connector where as service I call the API of the standard…
-
Hi Mark, two questions, from https://developer.domo.com/ I haven't seen an API to script a code to execute with schedule to call the connectow with custom parametes The commands of the CLI Tool are for execute a command from a client machine, not for submit a script that call the connector. Or at least that's what I see.…
-
Hi Mark, we have already spoken with the support and thet said that this is a know issue when a mega_table is used in a DCA
-
Ok thanks, but I'm not sure that is a bug, i wish to know if someone else has encountered this problem.
-
I don't know "Domo Actions" where can I find documentation about it? I have this issue not only with hashlib but also with other libs as moment g.e: How can I use moment inside my DCA?
-
i simply wish make an hashlib of a string a don't want send it not hashed on the net.... e.g.: let k = 'abcdEFGhilMNO' let token = crypto.createHash('sha512').update(k, 'utf-8').digest('hex');
-
To do that i will must parse all the data that i got from the API, with a big computional cost and more lines of code. I can do that, but I think taht this is not a great behavior of DOMO. I think that DOMO shoud recognize a date in ISO 8601, so ALSO with the timezone.
-
I haven't yet errors because i am still developing the connector. But i wish be sure that a string that is a date, with the Z char at end (ZULU TZ), is correctly recognized as date from DOMO
-
Hi @jaeW_at_Onyx, domo.onFiltersUpdate is trigger If a page filter is applied. I need that all works also in access to the dashboard, also when none filter is selected. The data are filtered in the card (with the analyzer) every dashboard has a card that query the same dataset but with different filters (setting on the…
-
Hi n8isjack, Is in the devtools network i see the errormessage But in the console i see where the code of app.js for the request is: let aws_cf_url = `${CONFIG_DATA.AwsLambdaURL}` const options = {contentType: "application/json"} domo.post(aws_cf_url, req_body, options).then((ext_result) => { console.debug("ext_result: " +…
-
OK, thanks, as study case i will try to use curl, but i think that this insn't be the best solution to make REST call. I hope that in a next version domo.js add a better handling of HTTP errors and return to the caller the status_code and the errormessage that it catchs
-
Inside the Domo CustomApp I use domo.post to make REST Get and Post, I don't even know if I can use curl in an the CustomApp JS script
-
Hi Jaew, the 400 error came from AWS. Iif use as client PostMan or the Python requests lib i got 400 as status_code and the ErrorMessage, a specific message for every cause : { "ErrorMessage": ......... } Why Domo.js don't throw the message but give me an generic "network error" I wish detect if is a 429 or a 408 or is an…