Objetivo.SGA.Cliente
1.7.0
dotnet add package Objetivo.SGA.Cliente --version 1.7.0
NuGet\Install-Package Objetivo.SGA.Cliente -Version 1.7.0
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="Objetivo.SGA.Cliente" Version="1.7.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Objetivo.SGA.Cliente --version 1.7.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Objetivo.SGA.Cliente, 1.7.0"
#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 Objetivo.SGA.Cliente as a Cake Addin #addin nuget:?package=Objetivo.SGA.Cliente&version=1.7.0 // Install Objetivo.SGA.Cliente as a Cake Tool #tool nuget:?package=Objetivo.SGA.Cliente&version=1.7.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Objetivo - Cliente SGA (Sistema de Gestão Acadêmica)
Pacote para facilitar o uso da API para acessar dados e arquivos, referentes aos dados de acordo com seu nível de acesso.
Último release
Release 1.7.0 (2022-11-08)
Features
- Incluindo parâmetro para indicar origem e tempo de expiração na geração do token.
- Completando lista das mudanças de cada release.
- Documentando da configuração, uso e até publicação do projeto.
- Tratando as configurações, principalmente a URL para evitar erros.
Configuração
Para pode usar os recursos do pacote, são necessárias 3 (três) configurações:
URL
: (OBRIGATÓRIO) Informar a URL da API que irá ser carregada.Chave Pública
: (OBRIGATÓRIO) Informar a chave pública de acesso a API.Autorização
: (OBRIGATÓRIO) Informar a autorização de acesso a API que vai influênciar os recursos que você terá acesso.
É um Singleton, então só precisa ser atribuído um única vez dependendo da sua aplicação:
Objetivo.SGA.Cliente.Config.Url = "https://api.site.com.br/pasta/";
Objetivo.SGA.Cliente.Config.ChavePublica = "160MYEAto65UhwwrJsTtCBgVpwpj499CML4rK7y1bFpZLMudMk";
Objetivo.SGA.Cliente.Config.Autorizacao = "73oo41d94iPEQmeyScA5ApnthwH77b88pidsvxsHOKpMEtZGpz";
Chamando API
Um exemplo de teste de obter os dados da API.
using Xunit;
using System.Threading.Tasks;
using Objetivo.SGA.Cliente.Servicos;
using Objetivo.SGA.Cliente.ObjetosDeValor;
namespace Seu.Projeto.Csharp.Teste
{
public class SobreServTeste
{
[Fact]
public async Task Obter()
{
SobreServ serv = new();
Sobre dados = await serv.ObterAsync();
Assert.True(serv.EhValido());
Assert.NotNull(dados);
}
}
}
Algumas chamadas precisam de parâmetros, e neste caso, há classes para mandar esses valores. Nesse exemplo, vou usar o serviço de filtro de séries.
using Xunit;
using System.Linq;
using System.Threading.Tasks;
using System.Collections.Generic;
using Objetivo.SGA.Cliente.Servicos;
using Objetivo.SGA.Cliente.Entidades;
using Objetivo.SGA.Cliente.Comandos.SerieCmds;
namespace Seu.Projeto.Csharp.Teste
{
public class SerieServTeste
{
[Fact]
public async Task Filtrar_serie_valido()
{
SerieServ serv = new();
FiltrarCmd cmd = new()
{
Maximo = 1,
Pagina = 1
};
Serie[] dados = await serv.FiltrarAsync(cmd);
Assert.True(dados.Any());
Assert.True(serv.EhValido());
}
[Fact]
public async Task Filtrar_serie_invalido()
{
SerieServ serv = new();
FiltrarCmd cmd = new()
{
Series = new List<string>() { "-1" },
Maximo = 1,
Pagina = 1
};
Serie[] res = await serv.FiltrarAsync(cmd);
Assert.False(res.Any());
Assert.False(serv.EhValido());
}
}
}
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. |
.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.
-
.NETStandard 2.0
- Newtonsoft.Json (>= 12.0.3)
- System.ComponentModel.Annotations (>= 4.7.0)
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.7.0 | 392 | 11/9/2022 |
1.6.0 | 390 | 11/3/2021 |
1.5.0 | 376 | 9/20/2021 |
1.4.2 | 370 | 6/17/2021 |
1.4.1 | 381 | 6/17/2021 |
1.4.0 | 361 | 6/17/2021 |
1.3.1 | 357 | 6/16/2021 |
1.3.0 | 407 | 6/15/2021 |
1.2.0 | 395 | 6/11/2021 |
1.1.0 | 443 | 8/17/2020 |
1.0.1 | 474 | 6/5/2020 |
1.0.0 | 456 | 6/5/2020 |
0.10.0 | 471 | 6/4/2020 |
0.9.0 | 505 | 12/4/2019 |
0.8.0 | 498 | 11/12/2019 |
0.7.0 | 524 | 9/6/2019 |
0.6.0 | 537 | 8/19/2019 |
0.5.0 | 523 | 8/13/2019 |
0.4.0 | 543 | 8/9/2019 |
0.3.3 | 592 | 3/29/2019 |
0.3.2 | 564 | 3/29/2019 |
0.3.1 | 578 | 3/29/2019 |
0.3.0 | 544 | 3/27/2019 |
0.2.1 | 579 | 3/26/2019 |
0.2.0 | 590 | 3/26/2019 |
0.1.0 | 609 | 3/25/2019 |