튜토리얼
튜토리얼
.NET 개발환경에서 바로써트 SDK를 추가하여 본인인증 요청(requestIdentity) 함수를 구현하는 예시입니다.
1. BaroCert SDK 추가
① .NET SDK 예제코드 다운로드 후 압축을 해제합니다.
② 다운받은 SDK 예제코드의 Linkhub/, Barocert/ 폴더를 SDK를 적용할 프로젝트 경로에 복사하고. Linkhub.csproj, Barocert.csproj를 각각 기존 프로젝트로 추가합니다.
③ Barocert 프로젝트를 적용할 프로젝트의 참조로 추가합니다.
2. BaroCert SDK 설정
프로젝트에 Global.asax.cs 파일을 생성하여 연동환경 설정값, 카카오써트 서비스 클래스를 선언하고 Application_Start() 함수에 카카오써트 서비스 클래스 초기화 코드를 추가합니다.
using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.SessionState;
using System.Xml.Linq;
namespace Barocert.Kakaocert
{
public class Global : System.Web.HttpApplication
{
// Kakaocert 서비스 객체 선언
public static KakaocertService kakaocertService;
// 링크아이디
private string LinkID = "TESTER";
// 비밀키
private string SecretKey = "SwWxqU+0TErBXy/9TVjIPEnI0VTUMMSQZtJf3Ed8q3I=";
protected void Application_Start(object sender, EventArgs e)
{
// Kakaocert 서비스 객체 초기화
kakaocertService = new KakaocertService(LinkID, SecretKey);
// 인증토큰 IP 검증 설정, ture-사용, false-미사용, (기본값:true)
kakaocertService.IPRestrictOnOff = true;
// 통신 고정 IP, true-사용, false-미사용, (기본값:false)
kakaocertService.UseStaticIP = false;
}
}
}
3. RequestIdentity 기능 구현
Web Form을 추가하여 requestIdentity.aspx를 생성하여 응답코드, 메시지 확인 페이지를 추가하고, requestIdentity.aspx.cs 파일의 Page_Load 이벤트에 함수 호출 코드를 추가합니다.
requestIdentity.aspx.cs
using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
namespace Barocert.Kakaocert.Example
{
/*
* 카카오톡 이용자에게 본인인증을 요청합니다.
* https://developers.barocert.com/reference/kakao/dotnet/identity/api#RequestIdentity
*/
public partial class requestIdentity : System.Web.UI.Page
{
public string code;
public string message;
public IdentityReceipt result;
protected void Page_Load(object sender, EventArgs e)
{
// 이용기관코드 (파트너 사이트에서 확인가능)
string clientCode = "023040000001";
// 본인인증 요청 정보 객체
Identity identity = new Identity();
// 수신자 휴대폰번호 - 11자 (하이픈 제외)
identity.receiverHP = Global.kakaocertService.encrypt("01012341234");
// 수신자 성명 - 80자
identity.receiverName = Global.kakaocertService.encrypt("홍길동");
// 수신자 생년월일 - 8자 (yyyyMMdd)
identity.receiverBirthday = Global.kakaocertService.encrypt("19700101");
// 인증요청 메시지 제목 - 최대 40자
identity.reqTitle = "본인인증 요청 메시지 제목";
// 커스텀 메시지 - 최대 500자
identity.extraMessage = Global.kakaocertService.encrypt("본인인증 커스텀 메시지");
// 인증요청 만료시간 - 최대 1,000(초)까지 입력 가능
identity.expireIn = 1000;
// 서명 원문 - 최대 40자 까지 입력가능
identity.token = Global.kakaocertService.encrypt("본인인증 요청 원문");
// AppToApp 인증요청 여부
// true - AppToApp 인증방식, false - Talk Message 인증방식
identity.appUseYN = false;
try
{
result = Global.kakaocertService.requestIdentity(clientCode, identity);
}
catch (BarocertException ex)
{
code = ex.code.ToString();
message = ex.Message;
}
}
}
}
requestIdentity.aspx
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="requestIdentity.aspx.cs" Inherits="Barocert.Kakaocert.Example.requestIdentity" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>Barocert ASP.NET Example</title>
<link href="../Example.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<div id="content">
<p class="heading1">Response</p>
<br/>
<fieldset class="fieldset1">
<legend>카카오 본인인증 요청</legend>
<ul>
<% if (!String.IsNullOrEmpty(code)) { %>
<li>Response.code : <%= code %> </li>
<li>Response.message : <%= message %></li>
<% } else { %>
<li>접수아이디 (ReceiptID) : <%= result.receiptID%></li>
<li>앱스킴 (Scheme) : <%= result.scheme %></li>
<% } %>
</ul>
</fieldset>
</div>
</body>
</html>
4. 결과 확인
함수 호출이 정상적으로 처리되면 "채널 메시지 인증" 방식은 접수아이디(32자리 숫자)가 반환되며, "앱투앱 인증" 방식은 접수아이디와 AppScheme 이 함께 반환됩니다. 실패인 경우 BarocertException으로 오류코드("-"로 시작하는 8자리 숫자값)와 오류메시지가 반환됩니다. [오류코드]