All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.binance.connector.client.impl.websocketapi.WebSocketApiAuth Maven / Gradle / Ivy

There is a newer version: 3.2.0
Show newest version
package com.binance.connector.client.impl.websocketapi;

import org.json.JSONObject;
import com.binance.connector.client.utils.websocketapi.WebSocketApiRequestHandler;

/**
 * 

Authentication requests

* All requests under the * Authentication requests * section of the WebSocket API documentation will be implemented in this class. *
* Response will be returned as callback. */ public class WebSocketApiAuth implements WebSocketApiModule { private WebSocketApiRequestHandler handler; public WebSocketApiAuth(WebSocketApiRequestHandler handler) { this.handler = handler; } /** * Authenticate WebSocket connection using the provided API key.
* * After calling session.logon, future requests under same connection won't send apiKey and signature parameters.
* Calling session.logon multiple times changes the current authenticated API key.
* * @param parameters JSONObject composed by key-value pairs: *

* recvWindow -- optional/int -- The value cannot be greater than 60000
* requestId -- optional/String or int
* * @see * https://developers.binance.com/docs/binance-spot-api-docs/web-socket-api#log-in-with-api-key-signed */ public void logon(JSONObject parameters) { this.handler.signedRequest("session.logon", parameters); } /** * Query the status of the WebSocket connection, inspecting which API key (if any) is used to authorize requests.
* * @param parameters JSONObject composed by key-value pairs: *

* requestId -- optional/String or int
* * @see * https://developers.binance.com/docs/binance-spot-api-docs/web-socket-api#query-session-status */ public void status(JSONObject parameters) { this.handler.publicRequest("session.status", parameters); } /** * Forget the API key previously authenticated. If the connection is not authenticated, this request does nothing.
* * Note that the WebSocket connection stays open after session.logout request.
* You can continue using the connection, but now the requests will send the apiKey and signature parameters where is needed.
* * @param parameters JSONObject composed by key-value pairs: *

* requestId -- optional/String or int
* * @see * https://developers.binance.com/docs/binance-spot-api-docs/web-socket-api#log-out-of-the-session */ public void logout(JSONObject parameters) { this.handler.publicRequest("session.logout", parameters); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy