I'm trying to login to LDP `idp: 'https://localhost:8443/'` ```js (node:53800) UnhandledPromiseRejectionWarning: SyntaxError: Unexpected token } in JSON at position 3 at JSON.parse (<anonymous>) at SolidClient.performLogin (/xxx/node_modules/@solid/cli/src/SolidClient.js:186:31) ``` ```js const consentUrl = new URL(authUrl); const search = consentUrl.search.substring(1); let consPostData = JSON.parse('{"' + decodeURIComponent(search).replace(/"/g, '\\"').replace(/&/g, '","').replace(/\=/g, '":"') + '"}'); ``` where `search` is `""`, so JSON to be parsed will be `{""}`
I'm trying to login to LDP
idp: 'https://localhost:8443/'where
searchis"", so JSON to be parsed will be{""}