'Tracking user progress on sharepoint through powerapps/ powerautomate
Short version: Is there a way to track the user ID and the title of the link a user clicks on microsoft sharepoint with powerautomate or powerapps?
Long version:I have a sharepoint which contains a tutorial. The tutorial consist of several web pages and each webpage contains a link "Next Topic". Whenever a user is clickling on the link, i would like to store the user id, webpage name and timestamp in an excel file in the sharepoint itself. I am currently looking for a powerautomate solution, however, i cannot find a way to trigger the flow when the user is clicking on the link and how to get the data for user ID and the webpage name.
Solution 1:[1]
That's possible:
- Make your PowerAutomate flow with a trigger of receive http request.
- Your button on your website can make an http request, for example:
POST https://yourflow.com
HEADER Content-type: application/json
BODY {
"webpage": "Page1",
"time": "UTCNow()",
"User": "UserNameFromOauthOrToken"
}
- Your power automate next step will be to create an item in your list with the values you passed from the request.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | SeaDude |
