Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escape special characters +-&|!(){}[]^"~*?:\ - e.g. \+ \* \!
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Answered
Extension App on Desktop Client

Hi,

I'm trying to create an extension app and managed to get the yo symphony sample to work in the symphony web client.

I'm using the python version of the app and I can see the log of all requests the web client makes to the app ( https://localhost:4000 ). When I install the app, it succesfully creates the "Circle of Trust' entry in the Application tab and I can interact with the app without any problem.

When I try to install the app on the desktop client (version 1.5), I can't see any requests in the log and the Application tab doesn't change.

Do I have to do some configuration for the extension apps work on symphony desktop client ?

Thanks

Votes Newest

Answers


When you say "Desktop Client", I assume you are referring to the Symphony Desktop Application (SDA).

I suspect that you don't see it loading because SDA does not trust the self-signed certificate served on your local instance. Similar to how you initially got past the security warning on your browser, you need to do the same within SDA. To do that, you can open developer tools (Ctrl + Shift + I) then use window.location.href = https://localhost:4000/ just to clear the security warning, then head back to the sandbox pod again with window.location.href = https://develop2.symphony.com.

You can also use the console and network tabs in the developer tools to debug any issues with your extension app. Probably easier to do this within your browser for the majority part of your development cycle and then test in SDA once you're done.

  
  
Posted 2 years ago
Yong Sheng Tan
39 × 2 Administrator
2K Views
1 Answer
2 years ago
2 years ago
Tags