Questions tagged [remote-event-receiver]
Remote event receivers work similarly to regular event receivers except that remote event receivers handle events that occur when an app for SharePoint is on a different system from its host web application.
205 questions
0 votes
6 answers
2k views
What is the future for remote event receivers for SharePoint online?
We are migrating some applications from SharePoint 2019 to SharePoint online. The applications use remote event receivers using synchronous events. We can’t migrate to webhooks because they don’t ...
1 vote
1 answer
90 views
Are Remote Events Receivers still an Up To Date approach to follow
I want to run some logic after creating SharePoint online list items, the logic will be very complicated/lengthy to write inside Power Automate. so is creating a remote event receiver a valid ...
0 votes
0 answers
40 views
SharePoint Online - is there any event or scheduled action to sync item level permission when it changes?
Let's say I have 2 Document Libraries, Lib_A and Sub_A, in a SharePoint Online site. When there is an item in Lib_A of ID X, there will also be an item in Sub_A, using X as item title. Now I am ...
0 votes
2 answers
201 views
Remote event receivers Vs Power automate cloud flows [closed]
I am a big fan of remote event receivers as it is a very solid approach to implement business logic for SharePoint online lists/libraries. But recently, each time i start a new project >> ...
0 votes
0 answers
95 views
Copy file action and Remote Event Receivers not getting a valid token
I have two site collections (let call them src and dest) In the dest site collection I have a remote event receiver that triggers whenever a document is updated in the default document library (...
0 votes
1 answer
419 views
Debug my Remote Event Receiver using Ngrok will return this error "The remote server returned an error: (401) Unauthorized
I have the following code inside my remote event receiver:- public void ProcessOneWayEvent(SPRemoteEventProperties properties) { int listItemID = properties.ItemEventProperties....
0 votes
1 answer
202 views
Unable to find remote event receiver template in Visual Studio 2019
I'm trying to create a remote event receiver solution for SharePoint Online using VS 2019 community edition. I created an empty SP Add-in project, but when I try to add a new item, the event receiver ...
1 vote
0 answers
33 views
SPO: get a list Remote Event Receivers subscribed to some List
I've searched a lot about it but didn't find anything about it. Is there any way to get the list of Remote Event receivers subscribed to a List and its remote endpoint? I'm currently managing an ...
0 votes
1 answer
73 views
SharePoint provider hosted app - IRemoteEventService - Redirect call
We have a provider hosted app deployed in Azure that handles list item events for item create/update etc. It handles traffic from lot of different sites. We want to split the traffic among different ...
2 votes
1 answer
641 views
SPO Event Receiver is not firing
Recently I am not able to create (remote) event receivers in my SPO environment(s). Create new site Create new list Add event receiver using PnP.PowerShell Add-PnPEventReceiver -List "test"...
0 votes
3 answers
519 views
How we can secure the ClientID & ClientSecret inside our remote event receivers (Inside SharePoint Provider hosted app)
I have developed many remote event receivers and host them inside azure web apps. now the web.config file inside those remote event receivers contain the ClientId & ClientSecret, as follow:- <...
2 votes
0 answers
155 views
I am no longer able to debug/run my SharePoint Remote Event Receiver locally using Ngrok
Last month the below steps were working well for me to debug and test a SharePoint online remote event receiver locally:- Open Ngrok.exe >> run the following command inside ngrok:- ngrok ...
0 votes
1 answer
60 views
CSOM with netcore sending Notification Emails
Utilising the .net framework of the nugget package Microsoft.Sharepoint.Client we were able to send emails with the Utilities class. Is there any equivalent functionality in the .net standard nugget ...
0 votes
1 answer
176 views
Why ItemEventProperties.AfterProperties will not return strongly typed fields
Inside our remote event receivers we query the list item fields, using these 2 methods:- using the ItemEventProperties.AfterProperties Or querying the list using CAML query. now in the first ...
0 votes
1 answer
88 views
How to create remote event receiver for EventReceiverType.GroupUserAddedevent in SharePoint Online
I want to create remote event receiver which will trigger whenever any new user is added in SharePoint group. That user details and group and site details I need to maintain in SQL Data base. Regards ...