You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
running the following command on Windows CMD without escaping that double quotation will result in (Error: Parsing error: Invalid JSON format), also double quotation must be used outside the curly brackets.
si config set json '{"middlewareApiUrl":"https://api.scramjet.cloud/api/v1", "env": "production", "token": ""}'
to solve issue this must be added and double quotations for before and after the curly brackets
si config set json "{\"middlewareApiUrl\": \"https://api.scramjet.cloud/api/v1\", \"env\": \"production\", \"token\": \"Generate Token\"}"
The text was updated successfully, but these errors were encountered:
it seems that double quotation should be the norm for any command-line involvement on windows especially that with further tinkering on windows wherever there is single quotations being used it is throwing an error, including API request methods.
running the following command on Windows CMD without escaping that double quotation will result in (Error: Parsing error: Invalid JSON format), also double quotation must be used outside the curly brackets.
si config set json '{"middlewareApiUrl":"https://api.scramjet.cloud/api/v1", "env": "production", "token": ""}'
to solve issue this must be added and double quotations for before and after the curly brackets
si config set json "{\"middlewareApiUrl\": \"https://api.scramjet.cloud/api/v1\", \"env\": \"production\", \"token\": \"Generate Token\"}"
The text was updated successfully, but these errors were encountered: