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
Is it possible to get logs ?

Trying to resolve authentication issues :

  • SAML :-(
  • User unable to login with a password after resetting it.

I did not find how to print debug.

2
2
Posted 3 years ago
pic
Deleted user
  
  

SAML authentication is working. Very simple to setup on Scoold side. Congrats

romuald   3 years ago Report
Votes Newest

Answers


SAML passwords cannot be reset from Scoold.
Usually SAML errors are due to incorrect mapping of attributes, similar to this one:

Missing values for SAML attributes 'name', 'FirstName', 'LastName'.

Make sure you set the names of attributes to match your SAML attributes:

# attribute mappings (usually required)
# e.g. urn:oid:0.9.2342.19200300.100.1.1
para.security.saml.attributes.id = ""
# e.g. urn:oid:0.9.2342.19200300.100.1.3
para.security.saml.attributes.email = ""
# e.g. urn:oid:2.5.4.3
para.security.saml.attributes.name = ""
para.security.saml.attributes.firstname = "???"
para.security.saml.attributes.picture = "???"
para.security.saml.attributes.lastname = "???"
2
2
Posted 3 years ago
Alex Bogdanovski
1K × 9 Administrator
4K Views
1 Answer
3 years ago
3 years ago
Tags