InfotechHelpers.Xero.NetStandard.OAuth2Client
1.0.1
dotnet add package InfotechHelpers.Xero.NetStandard.OAuth2Client --version 1.0.1
NuGet\Install-Package InfotechHelpers.Xero.NetStandard.OAuth2Client -Version 1.0.1
<PackageReference Include="InfotechHelpers.Xero.NetStandard.OAuth2Client" Version="1.0.1" />
<PackageVersion Include="InfotechHelpers.Xero.NetStandard.OAuth2Client" Version="1.0.1" />
<PackageReference Include="InfotechHelpers.Xero.NetStandard.OAuth2Client" />
paket add InfotechHelpers.Xero.NetStandard.OAuth2Client --version 1.0.1
#r "nuget: InfotechHelpers.Xero.NetStandard.OAuth2Client, 1.0.1"
#addin nuget:?package=InfotechHelpers.Xero.NetStandard.OAuth2Client&version=1.0.1
#tool nuget:?package=InfotechHelpers.Xero.NetStandard.OAuth2Client&version=1.0.1
Xero .Net OAuth Client SDK
This package will allow you to connect to Xero using OAuth2 and the authorisation code flow. It will build you a login URL, redirect your user, take the code and state to get an accessToken and finally get tenants.
Use Nuget to download the package
dotnet add package Xero.NetStandard.OAuth2Client
or using the Package Manager Console inside Visual Studio
Install-Package Xero.NetStandard.OAuth2Client
or you can download the source code from https://github.com/XeroAPI/Xero-NetStandard and compile it by yourself.
Create a Xero App
Follow these steps to create your Xero app
- Create a free Xero user account (if you don't have one)
- Use this URL for beta access to oAuth2 https://developer.xero.com/myapps?code=oauth2create
- Click "or Try oAuth2" link
- Enter your App name, company url, privacy policy url, and redirect URI (this is your callback url - localhost, etc)
- Agree to terms and condition and click "Create App".
- Click "Generate a secret" button.
- Copy your client id and client secret and save for use later.
- Click the "Save" button. You secret is now hidden.
Build the login link
XeroConfiguration xconfig = new XeroConfiguration();
xconfig.ClientId = "yourClientId";
xconfig.ClientSecret = "yourClientSecret";
xconfig.CallbackUri = new Uri("https://localhost:5001") //default for standard webapi template
xconfig.Scope = "openid profile email files accounting.transactions accounting.contacts offline_access";
var client = new XeroClient(xconfig);
//build login link
Console.WriteLine(client.BuildLoginUri());
From here the user will be redirected to login, authorise access and get redirected back
On the way back you will get a parameter with code and state
- code
- state
XeroConfiguration xeroConfig = new XeroConfiguration();
xeroConfig.ClientId = "yourClientId";
xeroConfig.ClientSecret = "yourClientSecret";
xeroConfig.CallbackUri = new Uri("https://localhost:5001") //default for standard webapi template
xeroConfig.Scope = "openid profile email files accounting.transactions accounting.contacts offline_access";
var client = new XeroClient(xeroConfig);
//before getting the access token please check that the state matches
await client.RequestAccessTokenAsync(code, "yourState");
//from here you will need to access your Xero Tenants
List<Tenant> tenants = await client.GetConnections();
// you will now have the tenant id and access token
foreach (Tenant tenant in tenants)
{
// do something with your tenant and access token
//client.AccessToken;
//tenant.TenantId;
}
To setup the main API object see the snippet below
//
var AccountingApi = new AccountingApi();
var response = await AccountingApi.GetInvoicesAsync(accessToken, xeroTenantId);
Console.WriteLine(AccountingApi.GetInvoices().ToJson());
License
This software is published under the MIT License.
Copyright (c) 2019 Xero Limited
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
Product | Versions 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. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.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. |
-
.NETStandard 2.0
- Newtonsoft.Json (>= 13.0.3)
- System.IdentityModel.Tokens.Jwt (>= 8.6.1)
- System.Net.Http.Json (>= 8.0.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.