lessquo
Explore posts from serversHow to use custom fetch method for Hono client?
I have a noob question. I used to use the
axios
library and want a similar experience with the Hono client, such as shorter syntax, automatic JSON transformation and interceptors. Some suggest using ky
instead of axios
, but I don't know how to integrate it. The documentation (https://hono.dev/docs/guides/rpc#custom-fetch-method) is unclear to me. Could I get any guidance or example code?6 replies
ContextVariableMap not recognized during build from other package in monorepo
I created
src/hodo.d.ts
file in my Hono project:
Then, the type was inferred out of the box:
And, I configured the RPC feature in my React project:
It worked like a charm. but then I tried build command and encountered an error:
Does ContextVariableMap
type declaration not work with RPC feature?35 replies
CDCloudflare Developers
•Created by lessquo on 5/15/2024 in #pages-help
Error occurs accessing postgres with drizzle and postgres.js in Remix project
I've created a Remix project using create-cloudflare CLI as guided in https://developers.cloudflare.com/pages/framework-guides/deploy-a-remix-site/
and then I installed
drizzle-orm
and postgres
, but I've got this error when I executed a simple select query:
The code:
This happens while running the app (remix vite:dev
) locally.3 replies
TPToss payments 개발자 커뮤니티
•Created by lessquo on 1/10/2023 in #❓┃연동개발-문의
정산조회 결과는 정산이 완료된 것들만 보이나요?
정산조회로 가져온
Settlement
객체는 정산 및 계좌에 입금 완료된 것만 있나요? 아니면 정산지급일(paidOutDate
) 이전에도 조회가 되나요?14 replies
TPToss payments 개발자 커뮤니티
•Created by lessquo on 1/3/2023 in #❓┃연동개발-문의
결제 취소 요청을 빠르게 연달아 보내면 FORBIDDEN_CONSECUTIVE_REQUEST 에러 발생
같은
paymentKey
에 대해 결제 취소 요청을 빠르게 연달아 보내면 FORBIDDEN_CONSECUTIVE_REQUEST
에러가 발생합니다. 예를들어 10,000
원 결제건에 3,000
원 취소, 7,000
원 취소 요청을 거의 동시에 보내면 에러가 발생합니다. 혹시나 해서 멱등키를 사용해봤지만 결과는 같았습니다. 일단은 두 취소 요청 사이에 1초의 딜레이를 주었더니 정상적으로 처리되었는데요, 혹시 더 나은 해결 방법이 있을까요?12 replies
TPToss payments 개발자 커뮤니티
•Created by lessquo on 12/27/2022 in #❓┃연동개발-문의
Payment 객체는 외부로 노출되어도 문제 없나요?
Payment 객체를 그대로 DB 에 저장해서 사용하려는데 혹시 프론트엔드로 노출되면 안되는 민감한 정보가 포함되어 있는지 궁금합니다.
4 replies