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
Unanswered
Using Postman for accessing local application APIs


Which conx version are you using?

What is annotated on your Rest-APIs? @Authenticated (quarkus is expecting jwt as cookie in dot seperated format), @RolesAllowed (quarkus is expecting jwt as bearer in auth head).

Is your JWT a user session or back-channel auth?

Last check your setting in application.yml "conx->auth->session-type".

  
  
Posted 2 years ago
Lucas Reeh
108 × 4 Administrator
  
  

@Authenticated cookie format for quarkus "Cookie: q_session_user={{access_token}}|{{refresh_token}}|{{session_state}"}

Lucas Reeh   2 years ago Report
1
1

Von Postman musste ich {{access_token}}|{{refresh_token}}|{{id_token}}.{{session_state}} holen, damit es funktioniert.

Anand Natampalli   2 years ago Report
332 Views
0 Answers
2 years ago
2 years ago