Datagsm.OpenApi 1.1.1

dotnet add package Datagsm.OpenApi --version 1.1.1
                    
NuGet\Install-Package Datagsm.OpenApi -Version 1.1.1
                    
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="Datagsm.OpenApi" Version="1.1.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Datagsm.OpenApi" Version="1.1.1" />
                    
Directory.Packages.props
<PackageReference Include="Datagsm.OpenApi" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Datagsm.OpenApi --version 1.1.1
                    
#r "nuget: Datagsm.OpenApi, 1.1.1"
                    
#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.
#:package Datagsm.OpenApi@1.1.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Datagsm.OpenApi&version=1.1.1
                    
Install as a Cake Addin
#tool nuget:?package=Datagsm.OpenApi&version=1.1.1
                    
Install as a Cake Tool

DataGSM OpenAPI SDK for .NET

NuGet License .NET

DataGSM의 OpenAPI를 추상화된 환경에서 제공합니다.

설치 - .NET CLI

dotnet add package Datagsm.OpenApi

설치 - PackageReference

<PackageReference Include="Datagsm.OpenApi" Version="1.0.4" />

사용법

using Datagsm.OpenApi;
using Datagsm.OpenApi.Models;

// API 키로 클라이언트 생성
using var client = new DataGsmClient("your-api-key");

// 학생 목록 조회
var students = await client.Students.GetStudentsAsync(new StudentRequest
{
    Grade = 2,
    ClassNum = 1
});

// 전공 동아리 목록 조회
var clubs = await client.Clubs.GetClubsAsync(new ClubRequest
{
    ClubType = ClubType.MajorClub
});

// 등록된 프로젝트 목록 조회
var projects = await client.Projects.GetProjectsAsync();

// 오늘의 급식 조회
var meals = await client.Neis.GetMealsAsync();

// 학사일정 범위 조회
var schedules = await client.Neis.GetSchedulesAsync(new ScheduleRequest
{
    FromDate = new DateOnly(2025, 3, 1),
    ToDate   = new DateOnly(2025, 3, 31)
});

API 키는 DataGSM 클라이언트 포털에서 발급받을 수 있습니다.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net8.0

    • No dependencies.

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.1.1 76 3/11/2026
1.0.4 70 3/11/2026
1.0.3 69 3/11/2026
1.0.2 70 3/11/2026
1.0.1 67 3/11/2026
1.0.0 68 3/11/2026