Results Loading


            

Here are solutions to common errors you may encounter when editing your auth.config file.


Expecting 'STRING'
or
Expecting 'STRING', 'NUMBER', 'NULL', 'TRUE', 'FALSE', '{', '['

You probably have an extra comma at the end of your collection. Something like: { "rules": { "Legacy": { "allow": [ "/", "/*", "/**/**", This comma is unnecessary as there is nothing following it ] }, ...
You may have also forgotten to close a value with a double-quote. Something like: { "rules": { "Legacy": { "allow": [ "/", "/*", "/**/** This value must end with a double-quote ] }, ...
Expecting '}', ','

You probably have an extra character that doesn't need to be there. Something like: ... }, "Administrator": { "allow": [ "/", "/*", "/**/**" ]] This 2nd closing bracket is unnecessary }, "Accounting": { ...