Skip to content

victorap93/azuread

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Azure AD

Software License Latest Version Total Downloads

Azure AD is an easy way to use Azure AD 2.0 Protocols to get authorization token

Installation

The recommended way to install this is through Composer.

composer require victorap93/azuread

How to use

Get the nedded parameters:

Read this step to know how to get neded params.

Get Token by using Microsoft client secret:

require_once "./vendor/autoload.php";

use \victorap93\AzureAD;

$tenantId = "";
$clientId = "";
$scope = "https://graph.microsoft.com/.default";
$clientSecret = "";

$AzureAD = new AzureAD;
$azure_token = $AzureAD->getMSTokenBySecret($tenantId, $clientId, $scope, $clientSecret);
echo $azure_token->access_token;

Get Token by using Miscrosoft username and password:

require_once "./vendor/autoload.php";

use \victorap93\AzureAD;

$tenantId = "";
$clientId = "";
$scope = "https://graph.microsoft.com/.default";
$username = "";
$password = "";

$AzureAD = new AzureAD;
$azure_token = $AzureAD->getMSTokenByCredentials($tenantId, $clientId, $scope, $username, $password);
echo $azure_token->access_token;

Help and docs

License

Azure AD is made available under the MIT License (MIT). Please see License File for more information.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages