본문 바로가기

해외 오픈마켓 - API/Qoo103

[Qoo10] Qoo10 - ItemsLookup.GetAllGoodsInfo - 상품 정보(단품) ItemsLookup.GetAllGoodsInfo - 상품 정보 수집 Request Sample을 참고하여 상품 정보를 불러 와보자 Request const axios = require('axios'); require("dotenv").config(); const getAllGoodsInfo = () => { return axios({ method: 'GET', url: `https://api.qoo10.${process.env.COUNTRY.toLowerCase()}/GMKT.INC.Front.QAPIService/Giosis.qapi`, params: { v: '1.0', method: 'ItemsLookup.GetAllGoodsInfo', key: `${process.env.SECRET_KEY}`,.. 2023. 10. 23.
[API] Qoo10 - ShippingBasic.GetShippingInfo_v2 - 주문 정보 수집 ShippingBasic.GetShippingInfo_v2 - 주문 정보 수집 Request Sample을 참고하여 주문 정보를 불러 와보자 Request const axios = require('axios'); require("dotenv").config(); const getShippingInfoV2 = () => { return axios({ method: 'GET', url: `https://api.qoo10.${process.env.COUNTRY.toLowerCase()}/GMKT.INC.Front.QAPIService/Giosis.qapi`, params: { v: '1.0', method: 'ShippingBasic.GetShippingInfo_v2', key: `${process.env.S.. 2023. 10. 22.
[API] Qoo10 - CertificationAPI.CreateCertificationKey - 인증키 발급 CertificationAPI.CreateCertificationKey 인증키 발급 받는 방법 Qoo10은 다른 오픈마켓들과 다르게 oauth 방식이 아니다. 오히려 계정으로 API key를 발급받기 때문에 오히려 더 쉽다. Qoo10의 경우, developer 사이트가 SG, JP 각각 다르게 제공한다는 점을 참고하자. 사이트의 안내서만 다를 뿐 거의 동일하다 보면 된다. 여기서는 JP developer 기준으로 설명하겠다. (해당 페이지는 모두 일본어로 제공되기 때문에 한국어 번역을 하고 봐야하는 불편한 점이 있다.) Qoo10 - developer JP 참고 화면 Qoo10 - developer SG 참고 화면 1. CertificationKey 발급 Request Sample을 참고하여 인증키를.. 2023. 10. 21.