본문 바로가기
Program/Language

[Python] 쿠팡파트너스 API 예제

by 소중하루 2020. 7. 22.
반응형

[Python 쿠팡파트너스 API 예제]

쿠팡파트너스를 하는 사람들이 많아 지고 있습니다

좀더 자동화를 하기 위해 아래 Python 쿠팡파트너스 API 예제를 참고하세요

 

파트너스 API 를 사용하기위해서 쿠팡파트너스에 가입하고 파트너스 API 를 신청하셔서

AccessKey, SecretKey 정보를 받으면 됩니다.

자세한 사항은 API 정보는 쿠팡 파트너스 가입후 API 문서를 보시면 더욱더 많은 정보를 보실 수 있습니다.

 

GET : 카테고리 별 베스트 상품에 대한 상세 상품 정보를 생성 API
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import hmac
import hashlib
import binascii
import os
import time
import requests
import json
from time import gmtime, strftime
 
coupang_category_id = 1016  # 카테고리
coupang_item_limit = 50  # 기본 20개
ACCESS_KEY = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
SECRET_KEY = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
 
def generateHmac(method, url, api_secret_key, api_access_key):
    path, *query = url.split('?')
   os.environ['TZ'] = 'GMT+0'
    dt_datetime = strftime('%y%m%d', gmtime()) + 'T' + strftime('%H%M%S', gmtime()) + 'Z'  # GMT+0
    msg = dt_datetime + method + path + (query[0if query else '')
    signature = hmac.new(bytes(api_secret_key, 'utf-8'), msg.encode('utf-8'), hashlib.sha256).hexdigest()
 
    return 'CEA algorithm=HmacSHA256, access-key={}, signed-date={}, signature={}'.format(api_access_key, dt_datetime, signature)
 
 
# 쿠팡 API 호출[url 설정]
request_method = 'GET'
domain = 'https://api-gateway.coupang.com'
api_url = '/v2/providers/affiliate_open_api/apis/openapi/v1/products/bestcategories/' + str(coupang_category_id) + '?limit=' + str(coupang_item_limit)
 
# 쿠팡 API 호출[response]
authorization = generateHmac(request_method, api_url, SECRET_KEY, ACCESS_KEY)
coupang_url = '{}{}'.format(domain, api_url)
response = requests.request(method=request_method,
                            url=coupang_url,
                            headers={'Authorization': authorization, 'Content-Type''application/json'}
                            )
 
# 쿠팡 API 호출[IF rCode]
if (response.json()['rCode'!= '0'):
    print('쿠팡 API 호출 오류[' + str(response.json()['rCode']) + ']')
 
# 쿠팡 API 호출[result_data]'
result_data = response.json()['data']
print(result_data[0]['productName'])
print(result_data[0]['productPrice'])
print(result_data[0]['productUrl'])
 
cs

 

Response
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  "rCode": "0",
  "rMessage": "",
  "data": [
    {
      "categoryName": "Coupang PL",
      "isRocket": false,
      "isFreeShipping": false,
      "productId": 27664441,
      "productImage": "http://static.coupangcdn.com/image/product/image/vendoritem/2018/03/12/3205353792/48d92887-82e7-46f5-8704-89df99a23bde.jpg",
      "productName": "탐사 소프트 100% 천연펄프 3겹 롤화장지 30m, 30롤, 1팩",
      "productPrice": 15600,
      "productUrl": "https://link.coupang.com/re/AFFSDP?lptag=AF1234567&pageKey=319834306&itemId=1023216541&vendorItemId=70064597513&traceid=V0-113-5fddb21eaffbb2ef"
    }
  ]
}
cs

 

반응형

댓글