TryIT.MicrosoftGraphService 1.4.4

dotnet add package TryIT.MicrosoftGraphService --version 1.4.4
NuGet\Install-Package TryIT.MicrosoftGraphService -Version 1.4.4
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="TryIT.MicrosoftGraphService" Version="1.4.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add TryIT.MicrosoftGraphService --version 1.4.4
#r "nuget: TryIT.MicrosoftGraphService, 1.4.4"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install TryIT.MicrosoftGraphService as a Cake Addin
#addin nuget:?package=TryIT.MicrosoftGraphService&version=1.4.4

// Install TryIT.MicrosoftGraphService as a Cake Tool
#tool nuget:?package=TryIT.MicrosoftGraphService&version=1.4.4

How to use this library

access https://docs.microsoft.com/en-us/graph/auth-v2-user to understand more

  1. create a page to allow manual sign in account
  2. page callback method, obtain access_token and save it in somewhere (e.g. Session / DB)
  3. use that access_token to call Graph Service

How to use TokenHelper to obtain access_token

  1. add reference to TryIT.MicrosoftGraphService into your code
  2. create a page to allow Administrator initial token
  3. in that page, use example code below to get token and save it
// page action call this method, and this method will redirect to AD login page
private MsGraphGetTokenConfig GetTokenConfig
{
    get
    {
        return new MsGraphGetTokenConfig
        { 
            OAuth_AuthorizeUrl = "",
            OAuth_TenantId = "",
            OAuth_ClientId = "",
            OAuth_RedirectUrl = "", // this is Callback url
            OAuth_Scope = "",
            OAuth_GetTokenUrl = "",
            OAuth_ClientSecret = "",

            OAuth_IsProxyRequired = "",
            Proxy_Url = "",
            Proxy_Username = "",
            Proxy_Password = ""
        };
    }
}

public void SignIn()
{
    TokenHelper tokenHelper = new TokenHelper(GetTokenConfig);

    // 1. validate token config
    if (tokenHelper.IsOAuthParameterValid)
    {
        // if token parameter is valid, then use browser redirect to the tokenHelper.AuthorizeUrl (Callback below)
        string authorizeURL = tokenHelper.AuthorizeUrl;

        // use code to redirect to authorizeURL
        this.RedirectUrl(authorizeURL);
    }
}

// this url is configured in Azure, after sign in, will redirect back to this url
public void Callback()
{
    string code = string.Empty;
    string state = string.Empty;

    if (!string.IsNullOrEmpty(code))
    {
        GetTokenResponse tokenResponse = tokenHelper.GetToken(code, state);
        // save token if need
    }
    else
    {
        // invalid response
    }
}

private void SaveToken(GetTokenResponse token)
{
    // save token somewhere
}

private string GetToken()
{
    /*
    * 1. get exists token (StateGuid, ExpiresOn, Access_token, Refresh_token)
    * 2. check token expiry, if ExpiresOn < Now, need refresh token to get new token
    * 3. save new token
    */

    var savedToken = "" // get saved token from session / db, this could be Object or DataTable

    if("savedToken is valid" == true) // check the token validity, e.g. check is not null
    {
        GetTokenResponse token = new GetTokenResponse
        {
            state = "[get state from exists token]",
            expires_on = "[get expires_on from exists token]",
            access_token = "[get expires_on from exists token]",
            refresh_token = "[get refresh_token from exists token]"
        };

        // here check token expiry, expires_on < DateTime.Now, if expired, will call RefreshToken to get latest valid token
        if(token.expires_on < DateTime.Now)
        {
            MsGraphGetTokenConfig tokenConfig = GetTokenConfig;
            TokenHelper tokenHelper = new TokenHelper(tokenConfig);
            GetTokenResponse tokenResponse = tokenHelper.RefreshToken(token.refresh_token, token.state);

            SaveToken(tokenResponse);

            return tokenResponse.access_token;
        }

        return token.access_token;
    }
    else
    {
        throw new Exception("Token not exists, please SignIn first.");
    }
}

How to use this package to access GraphAPI

  1. add reference to TryIT.MicrosoftGraphService into your code
  2. use following example code
MsGraphApiConfig graphConfig = new MsGraphApiConfig
{
    Proxy_Url = "[if the network restricted need proxy setup, indicator Proxy Url here]",
    Proxy_Username = "[if the network restricted need proxy setup, indicator Proxy Username here]",
    Proxy_Password = "[if the network restricted need proxy setup, indicator Proxy Password here]",
    Token = GetToken(); // "[this should be valid token, service will use this token to call Graph API]"
};

MsGraphService.Outlook MsOutlook = new MsGraphService.Outlook(graphConfig);
MsOutlook.GetMessages("emailaddress", "Inbox");

Note

MsGraphService.Sharepoint Upload file method will replace # to _ in file name

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.4.4 207 7/21/2023
1.4.3 164 7/21/2023
1.4.2 158 7/21/2023
1.4.1 153 7/20/2023
1.4.0 145 7/20/2023
1.3.9 149 7/20/2023
1.3.8 150 7/20/2023
1.3.7 180 7/3/2023
1.3.6 166 7/3/2023
1.3.5 175 7/3/2023
1.3.4 158 7/3/2023
1.3.3 199 7/3/2023
1.3.2 170 6/26/2023
1.3.1 184 4/21/2023
1.2.9 271 2/22/2023
1.2.8 248 2/16/2023
1.2.7 265 2/16/2023
1.2.6 280 2/11/2023
1.2.5 294 2/10/2023
1.2.4 270 2/10/2023
1.2.3 325 12/9/2022
1.2.2 320 12/9/2022
1.2.1 311 12/8/2022
1.2.0 314 12/8/2022
1.1.9 316 12/8/2022
1.1.8 309 12/8/2022
1.1.7 354 12/8/2022
1.1.6 320 12/6/2022
1.1.5 321 12/6/2022
1.1.4 328 12/6/2022
1.1.3 344 12/6/2022
1.1.2 331 12/6/2022
1.1.1 366 11/12/2022
1.1.0 370 11/9/2022
1.0.9 365 11/9/2022
1.0.8 413 11/9/2022
1.0.7 413 10/21/2022
1.0.6 414 10/13/2022
1.0.5 439 10/12/2022
1.0.4 428 10/12/2022
1.0.3 430 10/12/2022
1.0.2 418 10/11/2022
1.0.1 410 10/4/2022
1.0.0 430 8/16/2022