일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 시스템 파악
- pl/sql
- SQLRecoverableException
- avax.net.ssl.SSLHandshakeException:
- Bandit Level 6 → Level 7
- 나선형 모형
- 폭포수 모형
- 인증서만료에러
- springboot
- was버그
- vue
- Bandit Level 6
- was SQLRecoverableException
- 디미터 법칙
- mysql 튜닝
- java.sql.SQLRecoverableException
- 변수명 짓는법
- 에자일 모형
- 시스템 파악 정리
- 커맨드공부
- 명령어공부
- CSS
- 스크럼기법
- Law of Demeter
- Bandit Level 5
- 클린코드
- plsql
- 프로토타입 모형
- table scan
- OpenAPI
- Today
- Total
개발햄비
[에러해결] watson Assistant API 요청시 apikey header로 날리기 본문
$ curl -X POST -u "apikey:apikey" --header "Content-Type:application/json" --data "{\"input\": {\"text\": \"Hello\"}}" "https://gateway.watsonplatform.net/assistant/api/v1/workspaces/{workspace_id}/message?version=2019-02-28"
$ -u "apikey:{apikey}
를 header로 날리기 위해 base64 encoding 이 필요했다.
해결 방안
$ echo "$(echo -n 'apikey: 넣고자 하는 API_KEY | base64)"
를 날리면
다음과 같이 변화가 된다.
YXBpa2V5OkNXTWMtOHF5NFI1QV9SV----------------------------------------------
*보안을 위해 점선 처리.
입력 예 :
$ curl -X POST --header "Authorization:Basic <apikey:변화한 인증키 >" --header "Content-Type:application/json" --data "{\"input\": {\"text\": \"안녕하세요\"}}" "https://gateway-tok.watsonplatform.net/assistant/api/v1/workspaces/워크스페이스 키/message?version=2019-02-28"
즉
$ curl -X POST --header "Authorization:Basic YXBpa2V5OkNXTWMtOHF5NFI1QV9SV----------------------------------------------i" --header "Content-Type:application/json" --data "{\"input\": {\"text\": \"안녕하세요\"}}" "https://gateway-tok.watsonplatform.net/assistant/api/v1/workspaces/워크스페이스 키/message?version=2019-02-28"
를 전송하면
header를 통해서 API 인증을 성공할 수 있다
'개발 > 버그 해결 기록' 카테고리의 다른 글
[버그해결] DB접속 오류 java.sql.SQLRecoverableException: IO Error: Connection (0) | 2021.10.02 |
---|---|
[버그해결] java.security.cert.CertPathValidatorException: validity check failed (0) | 2021.05.23 |
Cannot find module 'semver' 해결 (0) | 2019.10.09 |
[heroku] App not compatible with buildpack 에러 해결 (3) | 2019.04.06 |
[버그해결]MySQL , Maria DB Connection을 잃어버리는 문제 해결 (0) | 2019.03.27 |