Skip to content

ozkary/sp-addin-todo

Repository files navigation

SharePoint Add-in with Office 365 and Angular

Use this project to get an intro at building an Angular component with SharePoint data list as backend. The integration is done using SharePoint Rest APIs

Demo Angular App

Demo SharePoint App

Getting the Security Token

    /**
    * gets the security token
    **/
    const token = () => {
                      
        const url = "../_api/contextinfo";

        $http({
            method: 'POST',
            url: url,
            headers: {
                'Content-Type': 'application/json;odata=verbose',
                'Accept': 'application/json;odata=verbose'
            }
        }).then(function success(resp) {
            var data = resp.data.d.GetContextWebInformation;                
            authToken = {};
            authToken.name = 'X-RequestDigest';
            authToken.value = data['FormDigestValue'];
                
        }, function error(resp) {
            console.log(resp);
        });            
            
    }

Getting Started

Make sure to install the Office Development tools with Visual Studio.

https://visualstudio.microsoft.com/vs/features/office-tools/

Visual Studio Office Tools

Visual Studio Project

Project Packages to import into Microsoft 365 tenant

  • ProductLog_Powerbi.pbix PowerBI Solution
  • ProductLog_Chatbot.zip Power Virtual Agent Sample
  • ProductLog_PowerApps.zip PowerApp Sample

After importing the projects make sure to update the connection to match your SharePoint tenant url and data list.

Presentation

https://www.ozkary.com/2020/11/microsoft-365-power-platform-overview.html

Create a free account on Office 365

https://developer.microsoft.com/en-us/office/dev-program

SharePoint service Reference

https://docs.microsoft.com/en-us/sharepoint/dev/sp-add-ins/get-to-know-the-sharepoint-rest-service

SharePoint REST service architecture

Working with Lists (CRUD API Calls)

https://docs.microsoft.com/en-us/sharepoint/dev/sp-add-ins/working-with-lists-and-list-items-with-rest

     /**
    * Adds a new item to the list
    * @param {object} item
    */
    const addItem = (item) => {

        const data = {
            "__metadata": {
                "type": "SP.Data.TodoItemsListItem"
            },
            "Title": item.title,
            "OData__Comments": item.comments,
            "Area": item.area
        }

        const request = $http({
            method: 'POST',
            url: url,
            headers: {
                'Content-Type': 'application/json;odata=verbose',
                'Accept': 'application/json;odata=verbose',
                'X-RequestDigest': authToken.value
            },
            data: JSON.stringify(data)
        });

        return request;
    } 

Microsoft Graph API

https://developer.microsoft.com/en-us/graph

Microsoft Graph

Microsoft Graph

Create a developer site collection on Office 365

https://www.ozkary.com/2018/08/upload-sharepoint-sandbox-solution-to.html

Licensing

Copyright (c) 2011-2017 GitHub Inc.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Stats

GitHub issues
GitHub forks
GitHub stars
GitHub license
Twitter