Questions tagged [sharepoint-online]

A cloud-based service, hosted by Microsoft, that provides SharePoint collaboration platform as an online service.

SharePoint Online is a collection of Web-based tools and technologies that help your organization store, share, and manage digital information. Built on Microsoft SharePoint Server 2013, this hosted service is ideal for working on projects, storing data and documents in a central location, and sharing information with others. The following Content features makes Enterprise Content Management (ECM) easy for everyone. It’s the combination of traditional content management, social capabilities, and powerful search.

3816 questions
4
votes
2 answers

Alternative Save/OpenBinaryDirect methods for CSOM for SharePoint Online

Based on the doc from MS https://learn.microsoft.com/en-us/sharepoint/dev/sp-add-ins/using-csom-for-dotnet-standard, Save/OpenBinaryDirect methods is not available for .NET core app, they suggest to use regular file API, so what is the alternative…
10031103
  • 83
  • 1
  • 7
4
votes
0 answers

Session table causing high CPU usage(100%) azure app service

Recently we faced a situation where our app service plan CPU was at 100% for considerable amount of time (8-10 hours). Our app service was using B2 plan (development), scale-out 2, SQL server (250GB) 20 DTU. Our application hosted in the app service…
4
votes
2 answers

Unable to deploy my Azure Web App using visual studio 2019

I have Visual Studio 2019 and i followed the steps mentioned in this link https://www.tatvasoft.com.au/blog/how-to-implement-remote-event-receiver-in-sharepoint-online/ to create a remote event receiver inside our SharePoint online development…
John John
  • 1
  • 72
  • 238
  • 501
4
votes
2 answers

How to load all Managed Metadata values from a Term Set

Short version: How can I load all the available options for a Managed Metadata field in PowerApps? Long version: I have a PowerApps app that is working properly, but the users want to be able to add data while offline and for it to sync back when…
4
votes
1 answer

Failing to authenticate SharePoint API with username and password for all Python plugins

My use case is to get some files from company's sharepoint (Online) site. I have been granted read access for my username password to connect through SharePoint API. For the calls I will have to pass proxy and company SSL verification. I have tried…
4
votes
0 answers

Vue-chartjs not rendering consistently and not responsive

I am using Vue-chartjs and created two vue components, one each for a bar and line chart. My data source is SharePoint. I am able to see my charts but the problem I have is the charts are not responsive. They are enlarged and sit on top of each…
OLA
  • 861
  • 2
  • 11
  • 23
4
votes
1 answer

Either scp or roles claim need to be present in the token using when application permissions to read sharepoint sites

I created an app in Azure and set it up to use Access and ID tokens. I want to connect to different tenants and read SharePoint sites. Here are the permissions I've requested and received Admin Consent for: For now, I have set up an App Secret…
iJK
  • 4,655
  • 12
  • 63
  • 95
4
votes
1 answer

How to use Sharepoint REST API in SSIS

I am new to Sharepoint Online API and I would like to extract data from a Sharepoint list using a SSIS flow. I tried to do this using OData Source, using the URL: http://name.sharepoint.com/sites/l/_vti_bin/ListData.svc but I am not able to see…
alex
  • 41
  • 3
4
votes
0 answers

How to create Managed Metadata column using REST API?

I want to create a list managed metadata column, using the request to the endpoint _api/web/Lists(guid'####-####-#####')/fields, but with no luck, got such an error "One or more field types are not installed properly. Go to the list settings page to…
Pavlo Mykhailyshyn
  • 203
  • 1
  • 6
  • 20
4
votes
1 answer

Read company feed through linkedIn API

I am trying to read my LinkedIn company feed through LinkedIn API. I have created app in LinkedIn and got clientID, client secret code and Access Token. I tried different URL but getting same error:…
4
votes
2 answers

Retrieving SharePoint Online objects permissions via Microsoft Graph API

I need to map permissions for all SharePoint Online objects (Sites, Lists, List Items, Attachments, Files, Folders). It seems to be possible through the CSOM API, but haven't found anything similar in Microsoft Graph. The following query…
Natalie Polishuk
  • 183
  • 1
  • 12
4
votes
3 answers

How to logout from Sharepoint with CSOM

I am using CSOM library with C# to upload some files to SharePoint. One requirement is to use 2FA. Basically, I am following this…
caldicot
  • 195
  • 2
  • 15
4
votes
1 answer

Unable to get user properties from users imported by Azure AD

I'm using Graph to get all users on my sharepoint online site. The code works just fine expect for one example. I've the sharepoint users is synced from azure ad, then im not able to get the properties of the user. Here is the…
4
votes
2 answers

Upload excel file to SharePoint Online using Python

I am trying to upload my excel spreadsheet to a document library on my SharePoint Online site. The Sharepoint URL and the folder location on the SharePoint site are listed in the excel Spreadsheet. Here is the code that I have right now: import…
MMac11
  • 59
  • 1
  • 1
  • 4
4
votes
3 answers

How to use filter in Microsoft Graph API to get SharePoint items?

Here I am trying to filter data based on created date. At 1st I tried in Graph Explorer and it's working. https://graph.microsoft.com/v1.0/me/messages?$filter=createdDateTime ge 2017-09-04&$select=subject,lastModifiedDateTime Now trying to…