Download the PHP package microsoft/microsoft-graph-beta without Composer
On this page you can find all versions of the php package microsoft/microsoft-graph-beta. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download microsoft/microsoft-graph-beta
More information about microsoft/microsoft-graph-beta
Files in microsoft/microsoft-graph-beta
Package microsoft-graph-beta
Short Description The Microsoft Graph Beta SDK for PHP
License MIT
Homepage https://developer.microsoft.com/en-us/graph
Informations about the package microsoft-graph-beta
Get started with the Microsoft Graph Beta SDK for PHP
Install the SDK
You can install the Beta PHP SDK with Composer by editing your composer.json
file:
Get started with Microsoft Graph
Register your application
Register your application to use the Microsoft Graph API using Microsoft Azure Active Directory in your tenant's Active Directory to support work or school users for your tenant, or multiple tenants.
Create a Token Request Context
A Token Request Context contains the credentials used to authenticate requests. The SDK supports various contexts that align with OAuth 2.0 flows: client_credentials
, authorization_code
and on_behalf_of
with support for secret-based and certificate-based client authentication.
The Token Request Context is passed to an authentication provider which fetches, caches and refreshes access tokens ensuring all requests are authenticated against the Microsoft Identity platform.
The following sample creates a TokenRequestContext that gets access without a user:
To gets access on behalf of a user:
Note that your application will need to handle redirecting the user to the Microsoft Identity login page to get the authorization_code
that's passed into the AuthorizationCodeContext
.
See for more on the authorization_code
grant flow.
To keep your user signed in across multiple requests within a session, see section on access token management
Initialise a GraphServiceClient
Using the Token Request Context and optional scopes, a GraphServiceClient
can be initialised:
To initialize the GraphServiceClient
with an already acquired access token or to retrieve the access token that the SDK fetches on your behalf, see section on access token management.
For more on Graph client configuration, see more examples
Call Microsoft Graph using the Beta endpoint and models
The following is an example that shows how to fetch a user from Microsoft Graph
Note that to calling me()
requires a signed-in user and therefore delegated permissions (obtained using the authorization_code
flow):
Documentation and resources
Upgrading
For detailed information on breaking changes, bug fixes and new functionality introduced during major upgrades, check out our Upgrade Guide
Develop
Run Tests
Run
from the base directory.
Issues
View or log issues on the Issues tab in the repo.
Contribute
Please read our Contributing guidelines carefully for advice on how to contribute to this repo.
Copyright and license
Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT license.
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact [email protected] with any additional questions or comments.