Skip to content

VueJS demo app on how to implement Login with Microsoft Office 365

Notifications You must be signed in to change notification settings

MarouaneSH/Vuejs_office365_OAuth

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Vuejs Microsoft Office 365 Login

How to use

First run

npm install

Then go to "Store.js" and change basUrl with your API server, and add client_id from your microsoft Azure dashboard

Demo

  baseUrl: 'http://localhost:8000', // Your API domain
  providers: {
    live: {
      clientId: '', // change with your Microsoft office Client ID
      redirectUri: 'http://localhost:8080' ,// Your client app URL
      authorizationEndpoint : "https://login.microsoftonline.com/common/oauth2/v2.0/authorize/",
      scope: ["openid","profile","offline_access","User.Read"],
      scopeDelimiter: ' ',
      oauthType: '2.0',
    }
  }

Run the app

npm run serve

About

VueJS demo app on how to implement Login with Microsoft Office 365

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published