sp-dev-fx-webparts/samples/react-google-fit
Hugo Bernier 68f7f67761 Changed from updated to modificationDateTime 2021-05-02 15:39:42 -04:00
..
assets Changed from updated to modificationDateTime 2021-05-02 15:39:42 -04:00
config Added sample react-google-fit (#755) 2019-02-09 12:10:15 +02:00
src Added sample react-google-fit (#755) 2019-02-09 12:10:15 +02:00
.editorconfig Added sample react-google-fit (#755) 2019-02-09 12:10:15 +02:00
.gitignore Added sample react-google-fit (#755) 2019-02-09 12:10:15 +02:00
.yo-rc.json Added sample react-google-fit (#755) 2019-02-09 12:10:15 +02:00
README.md Update README.md 2020-11-08 22:40:27 -05:00
gulpfile.js Added sample react-google-fit (#755) 2019-02-09 12:10:15 +02:00
npm-shrinkwrap.json Added sample react-google-fit (#755) 2019-02-09 12:10:15 +02:00
package.json Added sample react-google-fit (#755) 2019-02-09 12:10:15 +02:00
tsconfig.json Added sample react-google-fit (#755) 2019-02-09 12:10:15 +02:00
tslint.json Added sample react-google-fit (#755) 2019-02-09 12:10:15 +02:00

README.md

Google Fit information

Summary

This sample demonstrates the integration of Google Fit information with SharePoint Framework. The Google Fitness REST APIs allows developers to extend it further and create their own dashboards. Google Fitness REST APIs are useful if you have fitness app and you want to integrate your data with google fit or if you just want to collect Fitness data and display some information to the users. This web part helps to display the key fitness information (activity time spent, distance travelled, calories burned, step count) from the Google fit data source.

Web part preview

Generate OAuth 2.0 client ID

In order to use Google REST APIs, we need to generate an OAuth 2.0 client ID. Follow below procedure to generate it.

  1. Open Google API Console from here.
  2. Select any existing project or choose to create a new project.
  3. Click Continue.
    Create a new project
  4. Once the project is created, we will have to generate the credentials.
  5. Click "Go to credentials".
    Generate credentials
  6. Select the options as highlighted below:
    Add credentials to your project
  7. Click "What credentials do I need?".
  8. Under Authorized JavaScript origins, add SharePoint Online site url (e.g. https://contoso.sharepoint.com) or https://localhost:4321, if you are using SharePoint local workbench.
  9. Under Authorized redirect URI, add https://localhost:4321/auth/google/callback, if you are using SharePoint local workbench.
    Add authorized origins
  10. Click "Create OAuth client ID".
  11. Set up the OAuth 2.0 consent screen.
    Setup OAuth consent
  12. Click Continue.
  13. The Client id will be generated. Note it down to use in web part property.
    OAuth ClientId
  14. Click Done.

Configure the Web Part to use

  1. Add "Google Fit Activity Viewer" web part on SharePoint page.
  2. Edit the web part.
  3. Add above generated OAuth 2.0 client ID to "ClientId Field" web part property.
  4. Save the changes. SharePoint Run

NPM Packages Used

Below NPM package is used to develop this sample.

  1. react-google-authorize (https://www.npmjs.com/package/react-google-authorize)

Used SharePoint Framework Version

drop

Applies to

Solution

Solution Author(s)
react-google-fit Nanddeep Nachan (SharePoint Consultant, @NanddeepNachan)

Version history

Version Date Comments
1.0.0 January 14, 2019 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.


Prerequisites

  • SharePoint Online tenant
  • Site Collection created under the /sites/ or /

Minimal Path to Awesome

Features

This sample web part shows how adaptive cards can be used effectively with SharePoint Framework to render an image gallery with data stored in a SharePoint list.

  • Integrating Google Fit information
  • Consuming Google Fit REST APIs
  • Creating extensible services
  • Using @react-google-authorize