sp-dev-fx-webparts/samples/react-yammer-praise
petkir 71f6469fa0 URL dev.office.com to docs.microsoft.com 2020-06-09 09:09:22 +02:00
..
assets Added Yammer Praise sample 2020-03-23 19:44:05 +00:00
config Added Yammer Praise sample 2020-03-23 19:44:05 +00:00
src Added Yammer Praise sample 2020-03-23 19:44:05 +00:00
teams Added Yammer Praise sample 2020-03-23 19:44:05 +00:00
.editorconfig Added Yammer Praise sample 2020-03-23 19:44:05 +00:00
.gitignore Added Yammer Praise sample 2020-03-23 19:44:05 +00:00
.yo-rc.json Added Yammer Praise sample 2020-03-23 19:44:05 +00:00
LICENSE Added Yammer Praise sample 2020-03-23 19:44:05 +00:00
README.md URL dev.office.com to docs.microsoft.com 2020-06-09 09:09:22 +02:00
gulpfile.js Added Yammer Praise sample 2020-03-23 19:44:05 +00:00
package.json Added Yammer Praise sample 2020-03-23 19:44:05 +00:00
tsconfig.json Added Yammer Praise sample 2020-03-23 19:44:05 +00:00
tslint.json Added Yammer Praise sample 2020-03-23 19:44:05 +00:00

README.md

Yammer Praise using aadTokenProvider

Summary

This sample shows how to post a praise to Yammer using aadTokenProvider (without Yammer JavaScript SDK).

Post Praise to Yammer

It also can be added to Microsoft Teams as Personal or Team Tabs.

Post Praise to Yammer from Microsoft Teams

Used SharePoint Framework Version

SPFx v1.10.0

Applies to

Solution

Solution Author(s)
react-yammer-praise Ramin Ahmadi

Version history

Version Date Comments
1.0.0 Mar 23, 2020 Initial release

Disclaimer

THIS CODE IS PROVIDED AS IS WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT.


Features

This sample illustrates the following concepts on top of the SharePoint Framework:

  • Using AadTokenProvide to consume Yammer API.
  • How to get User/Group information from Yammer.
  • How to post a praise to Yammer.
  • React Hooks
  • Using async / await for the async calls
  • Office UI fabric components
  • Can be installed on Microsoft Teams as Personal app or a team tab

Configuration

To get access to Yammer API, we need to add the required permission to “SharePoint Online Client Extensibility Web Application Principal” application:

  • Navigate to Azure portal.
  • Search for App Registration at top search box.
  • Select “SharePoint Online Client Extensibility Web Application Principal“
  • Select “API permissions” from left navigation.
  • Click “Add a permission“.
  • Select Yammer.
  • Select “User_Impersonation” from delegated permissions.
  • Click “Add permissions“.
  • Click “Grant admin consent” button.
  • Select “Yes, add other granted permissions to configured permissions“
  • Click “Save and continue“.
  • Click “Grant admin consent“.
  • Select “Yes“.

Bundle and package the solution, deploy it to app catalog, then add the web part to any pages in SharePoint or add to your Teams.

Read my blog post for more information from here.