라벨이 JavaScript라이브러리인 게시물 표시

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

Axios - 웹개발 JavaScript 강력한 HTTP 클라이언트 라이브러리

이미지
 Axios - 웹개발 JavaScript 강력한 HTTP 클라이언트 라이브러리 ㅁ Axios란? Axios는 JavaScript 및 TypeScript에서 사용되는 간단하고 강력한 HTTP 클라이언트 라이브러리입니다.  Axios는 주로 Vue.js 및 React 등의 프런트엔드 프레임워크와 함께 사용되며, Node.js에서도 HTTP 요청을 수행하고 응답을 처리하는데 사용됩니다. 서버 사이드에서는 네이티브 node.js의 http 모듈을 사용하고, 클라이언트(브라우저)에서는 XMLHttpRequests를 사용합니다. ㅁ Axios의 주요 특징과 기능 1. 간편한 API 요청: 2. 비동기적인 패턴을 쉽게 사용 3. 요청과 응답 변환 인터셉터 제공 4. 요청 설정 옵션 지원 5. CSRF 보호 지원 6. HTTP 상태 코드 처리 7. 요청 취소하거나 중단 기능 지원 1. 간편한 API 요청 : Axios는 간단하고 직관적인 API를 제공합니다. HTTP 요청을 보내려면 단순히 axios 객체를 생성하고 원하는 메서드(GET, POST 등)를 호출하면 됩니다. const axios = require ( 'axios' ) ; // GET 요청 axios . get ( 'https://api.example.com/data' ) . then ( response => console . log ( response . data ) ) . catch ( error => console . error ( error ) ) ; ​ 2. Promise 기반  비동기적인 패턴을 쉽게 사용  : Axios는 Promise를 기반으로 하는 비동기적인 패턴을 사용합니다. 이는 .then() 및 .catch()와 같은 Promise 메서드를 사용하여 비동기 코드를 쉽게 처리할 수 있게 해줍니다. 3. 요청과 응답 변환 인터셉터 제공 : Axios는 요청과 응답을 변환하기 위한 인터셉터(interceptor)를 제공합니다

이 블로그의 인기 게시물

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

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

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