Kakao.AspNetCore.SDK
0.0.7
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Kakao.AspNetCore.SDK --version 0.0.7
NuGet\Install-Package Kakao.AspNetCore.SDK -Version 0.0.7
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.7" />
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.7
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Kakao.AspNetCore.SDK, 0.0.7"
#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.7 // Install Kakao.AspNetCore.SDK as a Cake Tool #tool nuget:?package=Kakao.AspNetCore.SDK&version=0.0.7
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Kakao.AspNetCore.SDK
Example : https://github.com/kakao-tam/Kakao.AspNetCore.SDK
0.0.7 보안 업데이트 하며, 내부 API path 변경이 있습니다.
ASP.NET Core 6.0 웹프로젝트 환경을 기준으로 제공되며, 라이브러리 내부적으로 세션과 API Controller를 포함하므로 Program.cs에 관련 설정이 있어야합니다.
※ 테스트 중으로 사용 방법은 변경될 수 있습니다.
사용 방법
설정
카카오 디벨로퍼스 설정에 Redirect URI와 Client Secret을 설정합니다.
Program.cs에 초기화 설정을 합니다.
builder.Services.UseKakaoSDKInit("앱키", "클라이언트 시크릿");
카카오 로그인
인가 코드 요청 및 액세스 토큰 발급/저장
<a href="/oauth/authorize">KAKAO LOGIN</a>
사용자 정보 가져오기
GET /v2/user/me
토큰 정보 보기
GET /v1/user/access_token_info
로그아웃
GET /v1/user/logout
연결끊기
GET /v1/user/unlink
카카오톡 소셜
프로필 가져오기
GET /v1/api/talk/profile
프로필 가져오기 : 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
Product | Versions 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.
-
- Microsoft.IdentityModel.Tokens (>= 6.17.0)
- Newtonsoft.Json (>= 13.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.
test release 0.0.7,보안 기능 점검
- Client Secret 필수 설정
- redirect uri 재정의 불가 설정
- PKCE 스펙 적용
- state CSRF 공격 방지 기능 추가