Sergei Sergeev

Results 106 comments of Sergei Sergeev
trafficstars

You shouldn't provide any headers from node-sp-auth. Here the bare minimum sample usage: ```javascript var spsave = require("spsave").spsave; spsave({ siteUrl: "https://.sharepoint.com/sites/dev" }, { clientId: "", clientSecret: "" }, { folder:...

Most likely you haven't provided correct permissions for your client app. Please follow steps from [wiki](https://github.com/s-KaiNet/node-sp-auth/wiki/SharePoint-Online-addin-only-authentication) to find out how to do that.

How do you provide credentials for `spsave`? Do you use username and password? Do you have MFA enabled for your tenant?

Yes, it looks like in that case addin only auth is the way to go. ADFS auth works for common scenarios, I tested it with my ADFS + SharePoint Online...

Hi, most likely smth wrong with authentication, but honestly it's quite difficult to troubleshoot such issues. Check the site URL is correct, domain and password. Try different options without a...

Actually you don't have to do anything specific for MFA support (at least for SharePoint Online): 1. Even with MFA you can use username\password authentication. You should create a new...

I don't think it's possible, the only way around might using personal user access tokens (it they are enabled for the tenant).

The `lib` folder doesn't play any role in `fast-serve` scenario, because everything is served from memory. To your question - [background-clip](https://caniuse.com/?search=background-clip) is supported by all browsers, so you shouldn't see...

Thanks, I haven't noticed that yellow info about prefixes :) You're right, in this case, we need to add an auto prefixing feature somehow. I will check what can be...

I've published a beta version, could you try it and say if it works for you: 1. In your SPFx solution run `npm install [email protected] --save-dev --save-exact` 2. Run it...