|
1 | 1 | # SOLAPI PHP |
| 2 | + |
2 | 3 | [](https://opensource.org/licenses/MIT) |
3 | 4 |
|
4 | 5 | ## Introduction |
| 6 | + |
5 | 7 | - PHP용 솔라피 SDK |
| 8 | +- PHP 5.6 이상 호환 |
| 9 | + |
| 10 | +## 주의사항 |
| 11 | + |
| 12 | +- 반드시 php 내 curl, json extension 등이 설치되어 있는지 확인해주세요. |
| 13 | + |
| 14 | +## 각 예제 폴더 별 안내사항 |
| 15 | + |
| 16 | +### 문자 발송 관련 예제 파일들 |
| 17 | + |
| 18 | +``` |
| 19 | +examples/sms/send_sms.php 단문 문자 발송 예제 |
| 20 | +examples/sms/send_lms.php 장문 문자 발송 예제 |
| 21 | +examples/sms/send_mms.php 사진 문자 발송 예제 |
| 22 | +examples/sms/set_scheduled_messages.php 메시지 예약 발송 예제 |
| 23 | +examples/sms/send_send_versea.php 해외 문자(SMS Only) 발송 예제 |
| 24 | +examples/sms/send_messages_with_auto_type_detect.php 문자 유형 감지 발송 예제 |
| 25 | +``` |
| 26 | + |
| 27 | +### 카카오 메시지(알림톡, 친구톡) 발송 관련 예제 파일들 |
| 28 | + |
| 29 | +``` |
| 30 | +examples/kakaotalk/send_alimtalk.php 알림톡 발송 예제 |
| 31 | +examples/kakaotalk/send_chingutalk.php 친구톡 발송 예제 |
| 32 | +examples/kakaotalk/send_chingutalk_button.php 친구톡 버튼 발송 예제 |
| 33 | +examples/kakaotalk/send_chingutalk_image.php 이미지가 포함된 친구톡 발송 예제 |
| 34 | +``` |
| 35 | + |
| 36 | +### 그룹 발송 예제 파일들 |
| 37 | + |
| 38 | +``` |
| 39 | +examples/group_message/group_create.php 그룹 생성 |
| 40 | +examples/group_message/group_get_info.php 그룹 정보 조회 |
| 41 | +examples/group_message/group_delete.php 그룹 삭제 |
| 42 | +examples/group_message/group_get_list.php 그룹 목록 조회 |
| 43 | +examples/group_message/group_add_messages.php 그룹 메시지 추가 |
| 44 | +examples/group_message/group_delete_messages.php 그룹 메시지 삭제 |
| 45 | +examples/group_message/group_get_messages.php 그룹 메시지 조회 |
| 46 | +examples/group_message/group_send_messages.php 그룹 메시지 전송(종합 예제) |
| 47 | +examples/group_message/set_reservation_group.php 그룹 예약설정 |
| 48 | +``` |
| 49 | + |
| 50 | +### 발송내역 조회 관련 예제 파일들 |
6 | 51 |
|
7 | | -## Pull Requests |
8 | | -Please use issues section for any suggestions and issues. |
9 | | -Any pull-requests are always welcomed and fill free to send. |
| 52 | +``` |
| 53 | +exmaples/message_list/simple_list.php 기본 예제 |
| 54 | +exmaples/message_list/print_details.php 메시지 상세 항목 출력 |
| 55 | +exmaples/message_list/search_date.php 날짜 검색 |
| 56 | +exmaples/message_list/search_messageId.php 메시지아이디 검색 |
| 57 | +exmaples/message_list/search_groupId.php 그룹아이디 검색 |
| 58 | +exmaples/message_list/search_status.php 상태코드 검색 |
| 59 | +exmaples/message_list/search_to.php 수신번호 검색 |
| 60 | +exmaples/message_list/pagination.php 페이지 처리 |
| 61 | +``` |
| 62 | + |
| 63 | +### 발신번호 인증/생성 관련 예제 파일들 |
| 64 | + |
| 65 | +``` |
| 66 | +examples/senderid/create_number.php 발신번호 생성 예제(STEP 1) |
| 67 | +examples/senderid/request_voicecall.php 전화번호 인증(ARS) 예제(STEP 2) |
| 68 | +examples/senderid/verify_token.php ARS 인증번호 확인 예제(STEP 3) |
| 69 | +examples/senderid/active_numbers.php 활성화 된 발신번호 리스트 조회 예제 |
| 70 | +``` |
| 71 | + |
| 72 | +### 카카오 채널/템플릿 조회 관련 예제 목록 |
| 73 | + |
| 74 | +``` |
| 75 | +examples/kakaotalk_channels(디렉토리) 카카오 비즈니스 채널 조회 관련 예제 포함 |
| 76 | +examples/kakaotalk_templates(디렉토리) 카카오 알림톡 템플릿 조회 관련 예제 포함 |
| 77 | +``` |
| 78 | + |
| 79 | +### 네이버 톡톡 발송 예제 |
| 80 | + |
| 81 | +``` |
| 82 | +examples/naver/send_naver.php 네이버톡톡(스마트알림) 발송(버튼 포함) 예제 |
| 83 | +```` |
| 84 | +
|
| 85 | +### RCS 발송 예제 목록 |
| 86 | +
|
| 87 | +``` |
| 88 | +examples/rcs(디렉토리) RCS SMS/LMS/MMS(s3, s6)/TPL(템플릿) 발송 예제 포함 |
| 89 | +``` |
| 90 | +
|
| 91 | +### 기타 |
| 92 | +
|
| 93 | +``` |
| 94 | +examples/statistics/statistics.php 통계 조회 예제 |
| 95 | +examples/get_balance.php 잔액 조회 예제 |
| 96 | +``` |
10 | 97 |
|
11 | 98 | ## License |
| 99 | +
|
12 | 100 | MIT License(https://opensource.org/licenses/MIT) |
13 | 101 |
|
14 | 102 |
|
|
0 commit comments