We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ab964e commit 3e43b80Copy full SHA for 3e43b80
payment/clients.py
@@ -15,8 +15,8 @@ def get_access_token(self) -> str:
15
raise ValueError("Access Token 발급 실패: imp_key 또는 imp_secret을 찾을 수 없습니다.")
16
17
request_dto = {
18
- "imp_key": constance.config["imp_key"],
19
- "imp_secret": constance.config["imp_secret"]
+ "imp_key": constance.config["IMP_KEY"],
+ "imp_secret": constance.config["IMP_SECRET"]
20
}
21
22
response = requests.post(
pyconkr/settings.py
@@ -200,6 +200,14 @@
200
1700,
201
"컨퍼런스(일) 참가자 수",
202
),
203
+ "IMP_KEY": (
204
+ "",
205
+ "포트원 REST API 키",
206
+ ),
207
+ "IMP_SECRET": (
208
209
+ "포트원 REST API 비밀키",
210
211
212
213
# drf-spectacular
0 commit comments