반응형
250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- mariadb
- elasticsearch
- 엘라스틱서치
- sample
- s3
- unity
- Windows
- 유니티
- build
- Git
- docker
- Kibana
- ChatGPT
- 영어
- Ai
- MSSQL
- API
- Python
- JS
- Linux
- ssh
- logstash
- JavaScript
- MySQL
- 구글
- AWS
- error
- 설정
- nodejs
Archives
- Today
- Total
목록Request (2)
가끔 보자, 하늘.
Postman website에서 request 시도 시 Cloud Agent Error
Cloud Agent Error: Request is taking longer than 30 seconds to fulfill. Use another agent to send a request without time limitations. Postman website에서 원하는 서버로 request 시 위와 같은 오류가 발생합니다. request 시 Postman website에서 localhost 로 요청을 보내려고 시도하므로 오류가 발생합니다. 그래서 postman client를 local에 설치해서 시도하면 문제없이 request 되는 것을 확인할 수 있습니다.
개발 이야기/개발툴 및 기타 이야기
2023. 5. 10. 15:42
FastAPI에서 CORS 처리 Tip
# FastAPI에서 CORSMiddleware라는 모듈로 CORS를 제어한다. from fastapi.middleware.cors import CORSMiddleware . . . app = FastAPI() # origins에는 protocal, domain, port만 등록한다. origins = [ # "http://192.168.0.13:3000", # url을 등록해도 되고 "*" # private 영역에서 사용한다면 *로 모든 접근을 허용할 수 있다. ] app.add_middleware( CORSMiddleware, allow_origins=origins, allow_credentials=True, # cookie 포함 여부를 설정한다. 기본은 False allow_methods=["*"]..
개발 이야기/개발 및 서비스
2022. 4. 22. 09:14