Tracy Li

Results 23 comments of Tracy Li

@Mars-2030 Flogo is a powerful integration framework. so what you trying/looking for sure flogo able to do. The simple flow would be: Rest Trigger -> Login to Saas1 Get Token...

it depends on your use cases. do all users have to log in to the saas system with their own conditionals to get and save data? can I integrate the...

@ecarlier-tibco We already have this feature implemented. to check if the field undefine or empty please use $xxxx.attribute == nil. try ternary expression if you want if .. then. Such...

@ecarlier-tibco Can you share your flogo.json with number and array?

@ecarlier-tibco 1. For your array expression which is invalid. ["ddd"] not an valid literal. please correct to `$.content.ParamArray2 != nil ? $.content.ParamArray2 : "[EMPTY]"` or remove [] 2. For number:...

@ecarlier-tibco Yes, for iterator, the iterate must be a number or array, it cannot iterate over a string, like "empty". It is expected behavior.

@ecarlier-tibco Got you. but now you are using expression ` $.content.ParamArray2 != nil ? $.content.ParamArray2 : "EMPTY"` it will return string "EMPTY" while $.content.ParamArray2 undefine. we cannot have a default...

@ecarlier-tibco Yes. we do not support that. in the future we will provide an array function which allows the user to create an array, such as `$.content.ParamArray2 != nil ?...

I found a workaround, the issue because of `keybase/go-keychain` removed deprecated API. What we can do just use `keybase/go-keychain` revision ccd67945d59e2e76561507e6d274dfe97905d40e or before that.