Есть код Python ( взят с
https://github.com/dmarket/dm-trading-tools/blob/m... ) :
import json
from datetime import datetime
from nacl.bindings import crypto_sign
import requests
# replace with your api keys
public_key = "17e78b6022d5470402674c551ac8ad6d572deee3d753a1c9eda25394fee6e528"
secret_key = "1ba46e6a980c6fa4767ff03d8e33ff158f21f980945ca2eb37eeb6eaeb1d41d017e78b6022d5470402674c551ac8ad6d572deee3d753a1c9eda25394fee6e528"
# change url to prod
rootApiUrl = "https://api.dmarket.com"
def get_offer_from_market():
market_response = requests.get(rootApiUrl + "/exchange/v1/market/items?gameId=a8db&limit=1¤cy=USD")
offers = json.loads(market_response.text)["objects"]
return offers[0]
def build_target_body_from_offer(offer):
return {"targets": [
{"amount": 1, "gameId": offer["gameId"], "price": {"amount": "2", "currency": "USD"},
"attributes": {"gameId": offer["gameId"],
"categoryPath": offer["extra"]["categoryPath"],
"title": offer["title"],
"name": offer["title"],
"image": offer["image"],
"ownerGets": {"amount": "1", "currency": "USD"}}}
]}
nonce = str(round(datetime.now().timestamp()))
api_url_path = "/exchange/v1/target/create"
method = "POST"
offer_from_market = get_offer_from_market()
body = build_target_body_from_offer(offer_from_market)
string_to_sign = method + api_url_path + json.dumps(body) + nonce
signature_prefix = "dmar ed25519 "
encoded = string_to_sign.encode('utf-8')
secret_bytes = bytes.fromhex(secret_key)
signature_bytes = crypto_sign(encoded, bytes.fromhex(secret_key))
signature = signature_bytes[:64].hex()
headers = {
"X-Api-Key": public_key,
"X-Request-Sign": signature_prefix + signature,
"X-Sign-Date": nonce
}
resp = requests.post(rootApiUrl + api_url_path, json=body, headers=headers)
print(resp.text)
К этому коду позже приделаю прокси.
Вопрос такой : при отправке post запроса идут ли на сервер какие-либо данные о моем местоположении ? И будет ли proxy работать как надо в случае такого запроса?
Верно ли предположение о том , что с таким методом общения с сервером через json API фактически никаких данных , за исключением IP не отправляется?
Вопрос задаю из-за того , что сервис ( DMarket ) блокирует пользователей из России , поэтому API-ключи получал через антидетект браузер + прокси. Дальше буду работать уже с их API , и хочу не получить заморозку из-за какой-то оплошности в безопасности.