Sergei Sergeev
Sergei Sergeev
You can't simply include `Bearer` token and load the page, because `Bearer` authentication works for SharePoint API, not for the browser. You should try using user creds (with app password)...
BTW check out this - [sp-auth-puppeteer-sample](https://github.com/koltyakov/sp-auth-puppeteer-sample)
If you `console.log(data)`, does it show valid headers? Could you post it here (truncate for security)?
If you have multiple auth providers (including forms for example), you could try adding additional header in your code: ``` spauth .getAuth('https://one.abc.net/sites/RIBWiki/', { ondemand: true }) .then(data => { let...
@TrabacchinLuigi I think that might makes sense if you are on windows and are able to use full framework. For example I decided to build a web app on IIS...
Thanks, will take a look what is possible with `IISIntegration`
Very good post, @andrewconnell. I understood only a small piece of info from the original post (from MS in July) . Now the direction for Office UI Fabric is much...
Hi, thank you for your valuable feedback! I know, that in nodejs programming, `rejectUnauthorized: false` might be considered as harmful and bad practice. However, the target platform for this package...
The problem is not only about version change, but code change as well. I will have to change sp-request, node-sp-auth, and some other related modules. All modules, which depend on...