전시주최자가 홍보하고자 하는 자사 무역전시회, 컨퍼런스를 검색할 수 있습니다.
https://api.ecplaza.net/apis/1/exhibition
GET, POST
항목명 | 값 | 설명 | 샘플데이터 |
---|---|---|---|
client_id | string (필수) | 발급받은 apikey | 2f4b17d54d3cc4d3c8fcXXXXXXXXXXXXXXXXXXXX |
client_secret | string (필수) | 발급받은 apikey secret | f1510b6813a9721b7716XXXXXXXXXXXXXXXXXXXX |
access_token | string (web용 api 경우 필수) |
일회성 access token | de785eecc25ca1d1bcd6XXXXXXXXXXXXXXXXXXXX |
q | string |
검색조건 categoryid : 분류 description : 업체명 country : 국가 |
categoryid:02;;description:machine;;country:korea |
ordercolumn | string : 기본값 registdate | 정렬항목 registdate : 등록일자 categoryname : 카테고리명 |
|
orderby | string : 기본값 desc | 정렬순서 asc | desc |
asc |
pageno | integer : 기본값 1 | 페이지 번호 | 1 |
output | string : 기본값 json | 결과 형식 xml | json |
json |
result | integer : 기본값 10 | 한 페이지당 결과 수 1 ~ 30 |
10 |
dataType | string | jsonp 사용시 설정 | jsonp |
jsonp | string | jsonp 사용시 설정 | callback |
항목명 | 값 | 설명 |
---|---|---|
total_count | integer | 전체 전시회 수 |
data | - | 전시회 정보 node, 아래 data 이하 |
항목명 | 값 | 설명 |
---|---|---|
exhibitionid | integer | 아이디 |
title | string | 전시회명 |
categoryid | integer | 카테고리 아이디 |
categoryname | string | 카테고리명 |
exhibitioninfo | string | 취급품목 |
exhibitionprofile | string | 전시설명 |
booths | integer | 전시장수 |
visitcount | integer | 방문자수 |
startdate | string | 시작일 |
enddate | string | 마감일 |
venuename | string | 개최장소 |
country | string | 개최국가 |
exhibitionurl | string | 전시회 url |
logoimageurl | string | 전시회 이미지 url |
snstypes | string | SNS url |
detailpageurl | string | ECPlaza 원본 url |
- {
- total_count: 131,
- data: [
- {
- exhibitionurl: "http://www.caravan-salon.com",
- enddate: "2013/09/08T00:00:00",
- startdate: "2013/08/31T00:00:00",
- exhibitionid: "4453",
- logoimageurl: "http://static1.ecplaza.com/uploads/thumbnails/120731_3064201_resize.gif",
- detailpageurl: "http://www.ecplaza.net/tradefair/Caravan-Salon-Dusseldorf-2013--o1010.html",
- title: "Caravan Salon Dusseldorf 2013",
- exhibitioninfo: "",
- exhibitionprofile: "The CARAVAN SALON DUSSELDORF invites visitors to discover the mobile leisure market.",
- categoryids: [
- {
- categoryid: "3",
- categoryname: "Automobiles & Motorcycles"
- },
- {
- categoryid: "5",
- categoryname: "Business Services"
- },
- {
- categoryid: "34",
- categoryname: "Transportation"
- }
- ],
- snstypes: [ ]
- }
- ]
- }
- <ecplaza_api>
- <total_count>131</total_count>
- <datadata>
- <item>
- <exhibitionurl>"http://www.caravan-salon.com"</exhibitionurl>
- <enddate>"2013/09/08T00:00:00"</enddate>
- <startdate>"2013/08/31T00:00:00"</startdate>
- <exhibitionid>4453</exhibitionid>
- <logoimageurl>"http://static1.ecplaza.com/uploads/thumbnails/120731_3064201_resize.gif"</logoimageurl>
- <detailpageurl>"http://www.ecplaza.net/tradefair/Caravan-Salon-Dusseldorf-2013--o1010.html"</detailpageurl>
- <title>"Caravan Salon Dusseldorf 2013"</title>
- <exhibitioninfo>
- <![CDATA["" ]]>
- </exhibitioninfo>
- <exhibitionprofile>
- <![CDATA["The CARAVAN SALON DUSSELDORF invites visitors to discover the mobile leisure market."]]>
- </exhibitionprofile>
- <categoryids>
- <item>
- <CategoryID>3</CategoryID>
- <CategoryName>"Automobiles & Motorcycles"</CategoryName>
- </item>
- <item>
- <CategoryID>5</CategoryID>
- <CategoryName>"Business Services"</CategoryName>
- </item>
- <item>
- <CategoryID>34</CategoryID>
- <CategoryName>"Transportation"</CategoryName>
- </item>
- </categoryids>
- <snstypes></snstypes>
- </item>
- </ecplaza_api>
에러코드 (error) | 메세지 (error_message) | 설명 |
---|---|---|
unauthorized_client | The client is not authorized to request an access token using this method. | 인증되지 않은 api |
invalid_client | Client authentication failed | 인증 실패 |
invalid_api_type | API type is incorrect. Check the api type on the ECPlaza Open API site. | 발급받은 api 종류와 맞지 않는 데이터 요청 |
no_exist_api | No exist api. Check the api status on the ECPlaza Open API site. | 존재하지 않는 api |
exceeded_api_key | API Key number of requests has been exceeded. Check the api type on the ECPlaza Open API site. | 요청 횟수 만 |
invalid_request | The request is missing a required parameter, includes an invalid parameter value, includes a parameter more than once, or is otherwise malformed. Check the "redirect_uri" parameter. | 잘못된 요청 |
no_exist_access_token | Access token is not exist. Check the access token. | 필수요청 파라미터가 없음(access token) |
expired_token | The access token is expired. Check the access token. | access token 만료 |
query_nothing | q parameter is required. Check the params. | 검색 관련 파라미터가 없거나 잘못됨 |