라벨이 SSL certificate인 게시물 표시

Kraken api - get token with python

Kraken api - get token with python an example of how you can generate a WebSocket authentication token using Python for Kraken's API: ```python import time import base64 import hashlib import hmac import urllib.request import json # Replace with your Kraken API public and private keys api_key = 'YOUR_API_PUBLIC_KEY' api_secret = 'YOUR_API_PRIVATE_KEY' # API endpoint and parameters api_path = '/0/private/GetWebSocketsToken' api_nonce = str(int(time.time() * 1000)) api_post = 'nonce=' + api_nonce # Create the SHA256 hash api_sha256 = hashlib.sha256(api_nonce.encode('utf-8') + api_post.encode('utf-8')).digest() # Create the HMAC signature api_hmac = hmac.new(base64.b64decode(api_secret), api_path.encode('utf-8') + api_sha256, hashlib.sha512) api_signature = base64.b64encode(api_hmac.digest()) # Create the request api_request = urllib.request.Request('https://api.kraken.com' + api_path, api_post.encode('utf-8')) ap

SSL/TLS 인증서 오류를 해결- 리눅스명령모음 - SSL certificate problem

이미지
  SSL/TLS 인증서 오류를 무시하는 linux 명령모음  -  SSL certificate problem   외부 파일을 받거나 HTTPS로 통신을 점검하는 동안  SSL certificate problem 이 발생 하는 경우 대처하는 법입니다. # 개발 하면서 많이 사용하는 어플리케이션 패키지를 다운 받을때 SSL 인증서 오류 해결 방법을 정리 합니다. 1. curl   2. wget  3. git    4. pip 4. npm     1. curl   -  curl은 커멘드라인으로 HTTP, HTTPS, FTP, FTPS, SCP, SFTP 등으로 웹서비스를 호출하고 응답을 받을수 있습니다.  방법 1 # curl 명령에 대한 인증서 확인을 비활성화합니다. curl --insecure -I https: //www.some.com/ curl -k -O https: //www.some.com/file.tar.gz 방법 2 # vi $HOME/.curlrc # .curlrc 파일에 다음 내용을 추가 합니다. insecure   2. wget   - wget은 인터넷 웹서비스 호출의 결과나 파일을 다운 받는데 사용합니다.  --no-check-certificate  를 이용하여 SSL 인증서 문제를 해결 할 수 있습니다. wget --no-check-certificate https: //bootstrap.pypa.io/get-pip.py     3. git - git은 소스 코드를 관리하고 변경 사항을 추적하는 분산 버전 관리 시스템(VCS)입니다. 방법 1. 환경 변수 설정 env GIT_SSL_NO_VERIFY= true git clone https: //some.git.com/file.git * 위의 환경 변수를 시스템 환경 변수로 설정해 두는 경우입니다.   방법 2.  git 명령 옵션 * git 명령을 실행 옵션으로 "http.sslVerify false" 를 추가 하는 방법입니다. # 다음 명령으로 git 환경을 설

이 블로그의 인기 게시물

SSL/TLS 인증서 오류를 해결- 리눅스명령모음 - SSL certificate problem

(truffle 환경 설정) 스마트 계약 배포 와 truffle deploy 오류 해결 - Error: Could not find artifacts for SimpleStorage from any sources

자기주권 신원 (SSI Self-Sovereign Identity) 인증의 발전 그리고 정보 민주화 (Information Democratization)