Kakao.AspNetCore.SDK 0.0.6

There is a newer version of this package available.
See the version list below for details.
dotnet add package Kakao.AspNetCore.SDK --version 0.0.6
NuGet\Install-Package Kakao.AspNetCore.SDK -Version 0.0.6
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="Kakao.AspNetCore.SDK" Version="0.0.6" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Kakao.AspNetCore.SDK --version 0.0.6
#r "nuget: Kakao.AspNetCore.SDK, 0.0.6"
#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 Kakao.AspNetCore.SDK as a Cake Addin
#addin nuget:?package=Kakao.AspNetCore.SDK&version=0.0.6

// Install Kakao.AspNetCore.SDK as a Cake Tool
#tool nuget:?package=Kakao.AspNetCore.SDK&version=0.0.6

Kakao.AspNetCore.SDK

Example : https://github.com/kakao-tam/Kakao.AspNetCore.SDK

ASP.NET Core 6.0 웹프로젝트 환경을 기준으로 제공되며, 라이브러리 내부적으로 세션과 API Controller를 포함하므로 Program.cs에 관련 설정이 있어야합니다.

※ 테스트 중으로 사용 방법은 변경될 수 있습니다. 
※ KakaoSdk 라이브러리는 Kakao.AspNetCore.Authentication.OAuth2 라이브러리와 무관한 라이브러리입니다.
※ Redirect URI는 기본값 "/UserApi/KakaoLoginRedirectUri"이고, UseKakaoSDKInit의 파라메터로 재정의해서 커스터마이징 가능합니다.
※ SDK내부 인가 요청 기능을 사용하지 않아도 Session, kakao_access_token에 인가 받은 유효한 토큰을 설정하면 API를 사용할 수 있습니다. 

사용 방법

설정

//Program.cs
builder.Services.UseKakaoSDKInit("앱키");

카카오 로그인

인가 코드 요청 및 액세스 토큰 발급/저장

※ 액세스 토큰은 HttpContext Session을 필수로 사용하며 Session에 kakao_access_token Key로 저장됩니다.

<a href="/oauth/authorize">KAKAO LOGIN</a>
사용자 정보 가져오기
GET /v2/user/me 또는 GET /UserApi/me 
토큰 정보 보기
GET /v1/user/access_token_info 또는 GET /UserApi/accessTokenInfo
로그아웃
GET /v1/user/logout 또는 GET /UserApi/logout
연결끊기
GET /v1/user/unlink 또는 GET /UserApi/unlink

카카오톡 소셜

프로필 가져오기
GET /v1/api/talk/profile 또는 GET /TalkApi/me
프로필 가져오기 : SDK 직접 호출
// Json Return 
string json = new TalkApiClient().profile();

// Model Object Return 
new TalkApiClient().profile((profile, error) =>
{
    if (error != null)
    {
        Console.WriteLine("카카오톡 프로필 가져오기 실패 {0}", error.ToString());
    }
    else if (profile != null)
    {
        rtn = profile;
        Console.WriteLine("카카오톡 프로필 가져오기 성공");
        Console.WriteLine("닉네임: {0}", profile.Nickname);
        Console.WriteLine("프로필사진: {0}", profile.ProfileImageUrl);
        Console.WriteLine("국가코드: {0}", profile.CountryISO);
    }
});
친구 목록 가져오기
GET /v1/api/talk/friends 또는 GET /TalkApi/friends
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  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. 
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
0.1.2 506 6/13/2022
0.1.1 383 6/13/2022
0.1.0 382 6/13/2022
0.0.10 402 6/7/2022
0.0.9 392 5/30/2022
0.0.8 379 5/19/2022
0.0.7 379 5/19/2022
0.0.6 373 5/18/2022
0.0.5 391 5/15/2022
0.0.4 389 5/12/2022
0.0.3 384 5/6/2022
0.0.2 395 5/6/2022
0.0.1 446 5/6/2022

test release 0.0.6,
       카카오톡 소셜 > 친구목록 가져오기 API 추가
       카카오톡 소셜 > 카카오톡 프로필 조회 Object 호출 방식 추가