I have been reading about updating a office 365 group site using CSOM. There are many limitations to update the group site with CSOM.
Is it possible to create web properties of office 365 group site using CSOM. I tried to create Web Properties in the office 365 group site and I am getting Access Denied exception. Any ideas about it.
Here is my code for updating web properties:
web.AllProperties["Type"] = "Movie";
web.Update();
web.Context.ExecuteQuery();
Thanking you.