POPBill Developers
가이드

튜토리얼

Delphi 개발환경에서 팝빌 SDK를 추가하여 단문 문자 메시지 전송 (SendSMS) 함수를 구현하는 예시입니다.

1. POPBiLL SDK 추가

팝빌 연동자료실에서 Delphi SDK 예제코드 다운로드 후 압축을 해제합니다.

압축해제한 SDK 예제코드에서 Linkhub/ Popbill/ PopbillTaxinvoice/ 각 폴더의 pas파일 3개를 프로젝트 유닛으로 추가합니다.

2. POPBiLL SDK 설정

아래 코드를 참조하여 Form 파일을 수정합니다.

  1. ① use 참조유닛 추가
  2. ② 인증정보 변수와 서비스 클래스를 선언
  3. ③ FormCreate 프로시저에 문자 서비스 클래스 인스턴스 생성 및 초기화
unit Example;

interface

uses
  Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  StdCtrls, TypInfo, shellapi, ExtCtrls, Grids,
  Popbill, PopbillMessaging;

const
  // 링크아이디
  LinkID = 'TESTER';

  // 비밀키
  SecretKey = 'SwWxqU+0TErBXy/9TVjIPEnI0VTUMMSQZtJf3Ed8q3I=';
// 생략
// ...
// ...

var
  // 문자 서비스 객체 선언
  messagingService : TMessagingService;
// 생략
// ...
// ...

procedure TfrmExample.FormCreate(Sender: TObject);
begin
  // 문자 서비스 객체 초기화
  messagingService := TMessagingService.Create(LinkID,SecretKey);

  // 연동환경 설정, true-테스트, false-운영(Production), (기본값:false)
  messagingService.IsTest := true;

  // 인증토큰 IP 검증 설정, true-사용, false-미사용, (기본값:true)
  messagingService.IPRestrictOnOff := true;

  // 예외 처리 설정, true-사용, false-미사용, (기본값:true)
  messagingService.IsThrowException := true;

  // 로컬시스템 시간 사용여부, true-사용, false-미사용, (기본값:false)
  messagingService.UseLocalTimeYN := false;
end;

3. SendSMS 기능 구현

Form에 버튼을 생성하고 버튼의 Click Event 코드에 단문 문자 메시지 전송 (SendSMS) 함수를 추가합니다.

procedure TfrmExample.btnSendSMS_SingleClick(Sender: TObject);
var
        receiptNum : String;
        sendNum : String;
        sendName : String;
        receiver : String;
        receiverName : String;
        contents : String;
        adsYN : Boolean;
        requestNum : String;
        corpNum : String;
        reserveDT : String;
        userID : String;
begin

        // 팝빌회원 사업자번호
        corpNum := '1234567890';

        // 팝빌회원 아이디
        userID := 'testkorea';

        // 발신번호 (팝빌에 등록된 발신번호)
        sendNum := '07043042991';

        // 발신자명
        sendName := '발신자명';

        // 수신번호
        receiver := '010-1234-4567';

        // 수신자명
        receiverName := '수신자명';

        //메시지 내용 (90Byte 초과된 내용은 삭제되어 전송됨)
        contents := '단문메시지 입니다.';

        // 요청번호
        // 파트너가 전송 건에 대해 관리번호를 구성하여 관리하는 경우 사용.
        // 1~36자리로 구성. 영문, 숫자, 하이픈(-), 언더바(_)를 조합하여 팝빌 회원별로 중복되지 않도록 할당.
        requestNum := '';

        // 예약일시
        reserveDT := '';

        // 광고문자 전송여부
        adsYN := false;

        try
                receiptNum := messagingService.SendSMS(corpNum, sendNum,
                                                       sendName, receiver,
                                                       receiverName, contents,
                                                       reserveDT, adsYN,
                                                       userID,requestNum);
        except
                on le : EPopbillException do begin
                        ShowMessage('응답코드 : ' + IntToStr(le.code) + #10#13 +'응답메시지 : '+ le.Message);
                        Exit;
                end;
        end;

        if messagingService.LastErrCode <> 0 then
        begin
                ShowMessage('응답코드 : ' + IntToStr(messagingService.LastErrCode) + #10#13 +'응답메시지 : '+ messagingService.LastErrMessage);
        end
        else
        begin
                txtReceiptNum.Text := receiptNum;
                ShowMessage('접수번호 (receiptNum) : '+ receiptNum);
        end;
end;

4. 결과 확인

함수 호출 반환 결과는 아래와 같습니다.
- 성공 : Response code 로 숫자 1 반환
- 실패 : PopbillException 으로 음의 정수 8자리 숫자값 오류코드와 오류메시지 반환 [오류코드]